How to launch java application from Dock, Mac
I have created a Java Swing application. It works fine.
I have created application file (.app) for that application using jar bundler.
But the main problem is that my application does not open if I click it on the Dock. I am usin开发者_运维技巧g Mac OS. How I can launch my application by clicking on Dock
Thanks Sunil Kumar Sahoo
If you are using Apple's JavaApplicationStub
, diagnostic output from the launch process may be obtained as follows:
$ export JAVA_LAUNCHER_VERBOSE $ ./your.app/Contents/MacOS/JavaApplicationStub
Here's a working example.
精彩评论