osx - How to prevent the java process icon display in mac -
osx - How to prevent the java process icon display in mac -
when start java process, display java icon in dock under mac. have added next line .profile, still not working
export java_tool_options=-dapple.awt.uielement="true"
anyone help ?
either in java code, add together this:
system.setproperty("java.awt.headless", "true");
or @ command-line, add together this:
java -djava.awt.headless=true -jar myprog.jar
java osx
Comments
Post a Comment