Exe4J all library?

923 Views Asked by At

I managed to solve my problem with Exe4J with "Jar in Exe" mode, after add all my library is working....Now I am looking for any way to add all library at once. Using Exe4J GUI, I did add one by one, but I have much more that 100 library and add one by one is very hard.

here how I did make: enter image description here

There a way to add all library at once ? How to ?

thanks.

1

There are 1 best solutions below

0
On

Yes, there is. The .exe4j file (the saved configuration) is just a xml file. It contains a node called <classPath> in which the jar entries are written like so:

<classPath>
     <archive location="./xmlbeans-2.6.0.jar" failOnError="true" />
</classPath>

You can write a simple java app that iterates over your libraries' location, prints them out in the xml file (the .exe4j file) and saves it. Then, when you open the file with the exe4j programme, the libraries will be loaded. Cheers! :)