0

install.xml ファイルをコンパイルすると、リソースが見つからないというエラーが表示されます。コンパイル時に生成されるエラーは次のとおりです

C:\Program Files\IzPack\bin>コンパイル D:\trail\simple\install.xml

.::  IzPack - Version 4.3.4 ::.

< compiler specifications version: 1.0 >

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

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

Adding resource: IzPack.uninstaller
Setting the installer information
Setting the GUI preferences
Adding langpack: eng
Adding resource: flag.eng
Adding langpack: fra
Adding resource: flag.fra
-> Fatal error :
   D:\trail\simple\install.xml:49: Resource not found: .\Readme.txt
com.izforge.izpack.compiler.CompilerException: D:\trail\simple\install.xml:49: R
esource not found: .\Readme.txt
        at com.izforge.izpack.compiler.CompilerConfig.parseError(Unknown Source)

        at com.izforge.izpack.compiler.CompilerConfig.findProjectResource(Unknow
n Source)
        at com.izforge.izpack.compiler.CompilerConfig.addResources(Unknown Sourc
e)
        at com.izforge.izpack.compiler.CompilerConfig.executeCompiler(Unknown So
urce)
        at com.izforge.izpack.compiler.CompilerConfig.main(Unknown Source)
        at com.izforge.izpack.compiler.Compiler.main(Unknown Source)

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

2 に答える 2

1

install.xml ファイルに不足しているリソースがあります。

D:\trail\simple\install.xml:49: Resource not found: .\Readme.txt 

このファイルを提供するか、install.xml ファイルから削除してください。

于 2011-06-29T06:18:32.677 に答える
0

私の推測では、install.xml に次のような InfoPanel 参照が含まれていると思います。

  <panels>
    <panel classname="InfoPanel" />
    ...
  </panels>

そして次のようなresourcedef:

<resources>
  <res id="HTMLInfoPanel.info" src="Readme.txt" />
  ...
</resources>

実際には、情報パネルに表示される欠落している「Readme.txt」ファイルを参照しています。

このファイルを作成するか、D:\trail\simple ディレクトリに移動する必要があります。

于 2011-06-24T20:57:54.387 に答える