HOWTO: Stop Output Window from Closing After Running Jview.exe

ID: Q169798


The information in this article applies to:


SUMMARY

When you run a Java Application using Jview.exe from within the Developer Studio IDE, the MS-DOS Command Prompt Window closes immediately after the Java Application terminates. This article illustrates how to programmatically prevent the MS-DOS Window from closing immediately.


MORE INFORMATION

To prevent the MS-DOS Window from closing immediately, you can have an input statement as the last statement in your Java application. For example:


public class Hello1
{

   public static void main(String args[]) throws java.io.IOException
   {
      System.out.println("Hello, World!");
      System.in.read();
   }

} 


or alternatively:


public class Hello2
{

   public static void main(String args[])
   {
      System.out.println("Hello, World!");
      try { System.in.read(); } catch(Exception e) {};
   }

} 


This code causes the Command Prompt window to remain open until you press the enter key. This is a useful because you can see the output during the development of your Java application.

A second option is to run your Java application externally, that is outside of the Developer Studio environment. Open up a DOS command session, and navigate to your project directory. After building the project in the Developer Studio, switch to the DOS window and run Jview.exe with class file containing main as the argument to JView:


JView myClass 


Another way of preventing the DOS Window from closing while running the application from within Developer Studio (Visual J++):

  1. Open the project settings.


  2. Select the Debug tab.


  3. Select the stand-alone interpreter category.


  4. Under Windows NT, use <WINDIR>\system32\cmd.exe as the stand-alone interpreter to run. Under Windows 95 or Windows 98, you need to run command.com in the directory c:\windows\commmand.


  5. Put "/K jview" as the stand-alone interpreter arguments.


  6. Click OK.



REFERENCES

For the latest Knowledge Base articles and other support information on Visual J++ and the SDK for Java, please see the following pages on the Microsoft Technical Support site:

http://support.microsoft.com/support/visualj/

http://support.microsoft.com/support/java/

Additional query words:


Keywords          : kbVJ100 kbVJ110 
Version           : WINDOWS:1.0,1.1
Platform          : WINDOWS 
Issue type        : kbhowto 

Last Reviewed: March 6, 1999