com.apple.mrj.application Missing for Native Swing Menu Bar support for MacOS X Snow Leopard
I was trying to define a custom name as explained in this question, but there is no application p开发者_运维知识库ackage in my com.apple.mrj. Is this a known issue? how can I workaround this?
Thanks in advance.
The easiest way to show a custom name on Mac OS X is to use the -Xdock
option of java
.
java -Xdock:name=CustomName ...
You can see more details using the command java -X
. You might also look at OSXAdapter, which puts "preferences, about, and quit functionality into handlers for the Mac OS X application menu."
精彩评论