IzPack TargetPanel 允许一个选择一个目标目录。但是我需要允许用户选择两个(一个用于应用程序,一个用于数据)。怎么做?
问问题
1148 次
1 回答
3
您可以创建一个UserInputPanel
并从用户那里获取路径作为变量。然后你可以在任何你想要的地方使用变量替换。您必须添加一个userInputSpec.xml
文件并定义自己的面板(任意数量)。要获取目录,请使用<field type="dir" ... >
我的一个应用程序的例子userInputSpec.xml
。我在安装程序中包含 mongoDB 并使用它来获取一些设置。
<userInput>
<panel order="0">
<createForPack name="MongoDB" />
<!-- Other settings like port, ip, username, password-->
<field type="staticText" align="left" txt="Select the catalogue where data will be stored." id="staticText.registry.db.data.text" />
<field type="dir" align="left" variable="mongo.data.dir">
<spec txt="Data directory" size="25" set="$INSTALL_PATH\data" mustExist="false" create="true" />
</field>
</panel>
<panel order="1">
<!-- definition of a second panel -->
</panel>
</userInput>
您还需要userInputSpec.xml
在主安装文件中包含作为资源,并UserInputPanel
为您在其中定义的每个面板添加一个元素userInputSpec.xml
像这样(在<installation>
元素中:
<resources>
<!-- other resources -->
<res id="userInputSpec.xml" src="userInputSpec.xml" />
</resources>
<panels>
<panel classname="HelloPanel"/>
<panel classname="InfoPanel"/>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="TreePacksPanel"/>
<panel classname="UserInputPanel"/>
<panel classname="UserInputPanel"/>
<panel classname="InstallPanel"/>
<panel classname="ShortcutPanel"/>
<panel classname="FinishPanel"/>
</panels>
注意我在 userInputSpec 中定义了两个面板的双重出现
确保您UserInputPanels
出现在之前,InstallPanel
因为您必须在复制文件之前从用户那里获取变量。
这只是我的应用程序中的一个示例。请参阅官方文档以了解我使用的元素和属性的含义。有许多与用户输入相关的功能。
于 2012-05-25T12:19:16.963 回答