My program works fine in Eclipse. However, if I try to export it as a runnable jar, the jar doesn't open when I double click it. Is there a way, in Eclipse, to export directly to a .app?
|
|
No. Apps contain a lot of other stuff. If you want the jar to run, you have to setup something to tell it to be opened by the JRE. Wouldn't recommend that. |
|||||||||||
|
|
have a look at this it might be helpful... it seems to be something to bundle jar into .app |
|||
|
|
|
Apple’s Java Deployment Options for OS X gives you all the information you need to know about doing this. Basically a But you can also just download a simple Mac Java app, like say Moneydance, that already does this, and delete all the Moneydance-specific stuff and replace it with your own. That’s what I did :P As for eclipse, basically you’d write your own little script to create the |
|||
|
|
|
There are (at least) two separate Ant tasks that can take a JAR file and associated resources and build a Your comment on one of the other answers suggests that your app requires a native library. You need to put this library inside the |
|||
|
|