FileDocCategorySizeDatePackage
Application1.javaAPI DocExample1271Fri Sep 14 17:04:58 BST 2001None

Application1

public class Application1 extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

    // An example of the simplest application possible, the "hello world"
    // application.
    System.out.println("Hello world\nHit enter to continue");
    // Pausing  before the program finishes isn't as simple as you might think.
    // For now, just copy the lines below into your program if a pause
    // is required...
    BufferedReader myIn = new BufferedReader(new InputStreamReader(System.in));
    String s;
    s = myIn.readLine();