Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a third party library that comes with .dll files that I need in order to run my java jar file. How can I include them in my jar file when I deploy my application? (I am using JSmooth to create an exe file - if that helps anything)

NOTE: I have looked at this stackoverflow question, but there's only one answer there, and I don't think it will work for me.

Thanks so much!

share|improve this question
why not ? in other discussions on the topic on stack overflow (i've looked into that question myself as well) web-start has also been offered as a solution, but it basically gets you the same thing - it places the dll in some temp directory and makes it available on the path – radai Mar 1 '10 at 20:00

1 Answer

this has come up before. the short answer is that you cant - the dll has to be accessible to the underline OS and so cannot be inside the jar. it can, however, be unpacked from within the jar to somewhere in the PATH before you call loadLobrary ....

look here : http://stackoverflow.com/questions/1611357/how-to-make-a-jar-file-that-include-dll-files

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.