3

根据 IzPack,这被归类为 CompilerException。

我的 install.xml 文件是:

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<installation version="2.0">
    <info>
        <appname>Time Sheets Manager</appname>
        <appversion>2.0</appversion>
        <authors>
            <author email="erbrown@ymail.com" name="Elliot Brown"/>
            <author email="" name="Denes Lengyel"/>
        </authors>
        <url>http://dbs.ca</url>
        <uninstaller name="timesheet_uninstall.jar" write="yes"/>
        <javaversion>1.7</javaversion>
        <requiresjdk>no</requiresjdk>
        <writeinstallationinformation>yes</writeinstallationinformation>
        <pack200/>
        <run-privileged condition="izpack.windowsinstall.vista|izpack.windowsinstall.7"/>
    </info>
    <guiprefs height="480" resizable="no" width="640">
        <modifier key="useFlags" value="no"/>
        <modifier key="langDisplayType" value="default"/>
    </guiprefs>
    <locale>
        <langpack iso3="eng"/>
    </locale>
    <panels>
        <panel classname="CheckedHelloPanel"/>
        <panel classname="InstallSelection"/>
        <panel classname="SimpleFinishPanel"/>
    </panels>
</installation>

我使用以下命令生成错误:

compile.bat install.xml -o install.jar -k standard

以下是异常的实际输出:

IZPACK_HOME is "C:\Program Files\IzPack\bin\.."

.::  IzPack - Version 5.0.0-beta11 ::.

< compiler specifications version: 5.0 >

- Copyright (c) 2001-2010 Julien Ponge and others. All Rights Reserved.
- Visit http://izpack.org/ for the latest releases
- Released under the terms of the Apache Software License version 2.0.

-> Processing  : install.xml
-> Output      : install.jar
-> Base path   : .
-> Kind        : standard
-> Compression : default
-> Compr. level: -1
-> IzPack home : C:\Program Files\IzPack\bin\..

May 16, 2013 5:55:04 PM com.izforge.izpack.core.container.PlatformProvider provi
de
INFO: Detected platform: windows,version=6.2,arch=x64,symbolicName=WINDOWS_8,jav
aVersion=1.7.0_15
-> Fatal error :
   install.xml:2: the file version is different from the compiler version
com.izforge.izpack.api.exception.CompilerException: install.xml:2: the file vers
ion is different from the compiler version
        at com.izforge.izpack.compiler.helper.AssertionHelper.parseError(Asserti
onHelper.java:61)
        at com.izforge.izpack.compiler.resource.ResourceFinder.getXMLTree(Resour
ceFinder.java:188)
        at com.izforge.izpack.compiler.CompilerConfig.executeCompiler(CompilerCo
nfig.java:295)
        at com.izforge.izpack.compiler.bootstrap.CompilerLauncher.main(CompilerL
auncher.java:52)

(tip : use -? to get the commmand line parameters)

这是我第一次使用 IzPack,让这个工作变得至关重要。任何帮助将不胜感激。

我还应该提到,面板部分中的“InstallSelection”是我自己在 Netbeans 中设计的。即使没有在面板部分定义它,我仍然会收到错误消息。

4

3 回答 3

4

标签安装的版本属性

<installation version="x.y">

与 IzPack 中的硬编码变量进行比较使用当前版本(2014 年 3 月 12 日)版本为 5.0

/**
* The compiler version.
*/
public final static String VERSION = "5.0";
于 2014-03-12T17:12:42.630 回答
1

由于缺乏适当和有效的文档,解决错误需要一段时间。

至少在这种情况下,需要检查两件事:

  • 当您设计自定义面板时,请确保用于编译它的 Java 编译器与 IzPack 将用于创建 installer.jar 文件的编译器相匹配。
    • 例如,Netbeans 使用来自 JDK 7 U15 的编译器,而 IzPack 使用的是 JDK 7 U15。
  • 确保自定义面板对应的“.jar”存在于 IzPack 的“izpack_install_dir/bin/panels”中
于 2013-05-17T15:52:19.040 回答
0

从异常输出中可以看到,将安装版本更改为 5.0。

<编译规范版本:5.0>

于 2015-10-26T07:19:03.840 回答