How to turn off Eclipse console on Windows
So I change the -vm
argument for eclipse.exe
using the eclipse.ini
settings file, and now there's an command prompt console (even if I remove the -vm
value).
Does anyone know how to turn off the console so I only have the eclipse GUI and not the console window? I'm running MS Windows 7.
EDIT: Solved thanks to 开发者_运维技巧Kennet, the problem was I was using java.exe
instead of javaw.exe
!!!
eclipse.exe -vm <path-to-java>\javaw.exe
javaw is a 'no console version' of java
精彩评论