Hi, is there any way to include all the *.dll file within a singel jar? I need to have just one jar file with my project.
/Per-Erik
Include *.dll
Re: Include *.dll
dlls and jars are at least for two differnt purposes: dlls contain native code and jars compiled class files-uncle wrote:Hi, is there any way to include all the *.dll file within a singel jar? I need to have just one jar file with my project.
/Per-Erik
The only reason for putting dll files into jas is for distributing jirr for applets or webstart. Otherwise no dll should be placed within jars.
On the other hand if you want all class files in one jar - that is no big deal. You may unzip jirr's jar, add your own class files and put the result into a new jar.