Site Tools


java:codes:textinput

This is an old revision of the document!


Text input

This is a simple “text input” application.

import java.io.*;
//imports the class IO
 
     public class TextInsert {
 
          public static void main(String[] args) throws Exception {
 
               String text ;
               BufferedReader in = new BufferedReader(
                                          new InputStreamReader(System.in));
 
               System.out.print("Whats your Name? ");
               text = in.readLine();
 
               System.out.println("Hello " +text) ;
          }
     }

java/codes/textinput.1425094950.txt.gz · Last modified: 2017/03/01 12:50 (external edit)