Is there a way we can get Command prompt of windows 7 back? In linux we append "&" ? I actually run a java program which will listen on a port continously. It is working in lunux as it gives the terminal back but "&" is not working in the windows cmd. Thanks
Ccna final exam - java, php, javascript, ios, cshap all in one. This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Saturday, February 25, 2012
Getting the windows Command prompt back
Tags
cmd,
java,
terminal,
Tips For Programmer,
windows
Subscribe to:
Post Comments (Atom)
I suggest you use the START command but please be aware that it opens the process in a new window.
ReplyDeleteYou can read about its syntax at http://www.computerhope.com/starthlp.htm .
start the java program with javaw instead of java. See this answer for some info on javaw. Difference between Java.exe and Javaw.exe
ReplyDelete