无法使用Izpack创建安装程序

问题描述

| 当我编译我的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)
    

解决方法

        install.xml文件中缺少资源。
D:\\trail\\simple\\install.xml:49: Resource not found: .\\Readme.txt 
提供此文件或从install.xml文件中将其删除。     ,        我的猜测是您的install.xml包含一个InfoPanel引用,例如:
  <panels>
    <panel classname=\"InfoPanel\" />
    ...
  </panels>
和如下的resourcedef:
<resources>
  <res id=\"HTMLInfoPanel.info\" src=\"Readme.txt\" />
  ...
</resources>
实际上引用的是缺少的“ Readme.txt”文件,该文件将显示在信息面板中。 您应该创建此文件或将其移动到D:\\ trail \\ simple目录。     

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...