• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

hiding console window

 
Ranch Hand
Posts: 87
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how can i run java without using command prompt?.or how can i avoid the command prompt window while GUI applications running?.we all know that a console window is not necessory in GUI.
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can use the javaw.exe program to run your class instead of the java.exe program. They are both in the bin sub-directory of your JDK directory. Javaw runs your program without the command-prompt window... in windows, you would make a shortcut to "<JDK_directory>\bin\javaw.exe -classpath <your_classpath> yourApp", and then you can run your program by clicking on an icon.
 
basha khan
Ranch Hand
Posts: 87
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hai Nate , nice to see u
ur answer is a possible solution but something inside JVM 'll be more better..
System.exit() is exiting the JVM.is there is any Console.exit() like methods which eleminates console window without exiting JVM?. or any tricks?
wishing u a splendid eve
basha
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
javaw is what you want to use. There is no console.exit(). But using javaw will allow the Console window to be closed without termintaing the VM.
 
reply
    Bookmark Topic Watch Topic
  • New Topic