Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我设法用“Jar in Exe”模式解决了我的Exe4J问题,在添加我所有的库后都在工作......现在我正在寻找任何方法来一次添加所有库。使用 Exe4J GUI,我确实一一添加,但我有 100 多个库,并且一一添加非常困难。
我是怎么做的:
有没有办法一次添加所有库?如何 ?
谢谢。
就在这里。.exe4j 文件(保存的配置)只是一个 xml 文件。它包含一个称为<classPath>jar 条目的节点,如下所示:
<classPath>
<classPath> <archive location="./xmlbeans-2.6.0.jar" failOnError="true" /> </classPath>
您可以编写一个简单的 java 应用程序,迭代您的库的位置,将它们打印在 xml 文件(.exe4j 文件)中并保存。然后,当您使用 exe4j 程序打开文件时,将加载库。干杯! :)