I'm using XFileDialog (https://code.google.com/p/xfiledialog/) instead of JFileChooser, but I want to bundle the dll's inside the .jar so I don't have to ship them with the application.
So I added them to the project, but I'm not sure how to reference them. Inside XFileDialog.class I found System.loadLibrary("xfiledialog64");
I guess this has to be changed to System.load("xfiledialog64")
.
Is this correct?
The other issue is that I am not able to edit the .class file from inside Eclipse. Does this mean that I have to edit the .class in the source and then re-compile it?