Create BufferedReader from InputStreamReader and System.in, read console input : BufferedReader « File Input Output « Java






Create BufferedReader from InputStreamReader and System.in, read console input

   
import java.io.BufferedReader;
import java.io.InputStreamReader;

class Main {
  public static void main(String args[]) throws Exception {
    InputStreamReader isr = new InputStreamReader(System.in);
    BufferedReader br = new BufferedReader(isr);

    while (true) {
      System.out.print("Radius? ");
      String str = br.readLine();
      double radius;
      try {
        radius = Double.valueOf(str).doubleValue();
      } catch (NumberFormatException nfe) {
        System.out.println("Incorrect format!");
        continue;
      }
      if (radius <= 0) {
        System.out.println("Radius must be positive!");
        continue;
      }
      System.out.println("radius " + radius);
      return;
    }
  }
}

   
    
    
  








Related examples in the same category

1.Create BufferedReader from System.in
2.Create BufferedReader from InputStreamReader
3.Create BufferedReader from StringReader
4.Create BufferedReader out of FileReader
5.Create BufferedReader from URL
6.Create BufferedReader from FileReader and Read / display lines from file
7.Use BufferedReader to Read and process lines from console
8.Tab filter: Convert tab to space characters
9.List of lines in a file with BufferedReader
10.Use BufferedReader to read line by line
11.A simple FilterReader that strips HTML tags out of a stream of characters
12.Using BufferedReader to read input number from user
13.Read lines of text from a file with the BufferedReader class
14.Read from a file using a BufferedReader
15.Read each line in a comma separated file into an array
16.Read content of a file
17.Reading Text from a File
18.Read a text file
19.Call the static method PressAnykey to keep to "DOS" window open.
20.A standalone program that reads a list of classes and builds a database of packages, classes, and class fields and methods
21.ReadLines: read file to list of strings
22.The AsciiReader can read ascii data files
23.Count the number of lines in the buffer