Java examples for Language Basics:Console
Read in Double from Console
//package com.java2s; public class Main { public static void main(String[] argv) throws Exception { String prompt = "java2s.com"; System.out.println(inDouble(prompt)); }/*from w w w .ja v a 2 s .c o m*/ public static double inDouble(String prompt) { while (true) { inputFlush(); printPrompt(prompt); try { return Double.valueOf(inString().trim()); } catch (NumberFormatException e) { System.out .println("Invalid input. Not a floating point number"); } } } public static void inputFlush() { int dummy; int bAvail; try { while ((System.in.available()) != 0) dummy = System.in.read(); } catch (java.io.IOException e) { System.out.println("Input error"); } } public static void printPrompt(String prompt) { System.out.print(prompt + " "); System.out.flush(); } public static String inString(String prompt) { inputFlush(); printPrompt(prompt); return inString(); } public static String inString() { int aChar; String s = ""; boolean finished = false; while (!finished) { try { aChar = System.in.read(); if (aChar < 0 || (char) aChar == '\n') finished = true; else if ((char) aChar != '\r') s = s + (char) aChar; // Enter into string } catch (java.io.IOException e) { System.out.println("Input error"); finished = true; } } return s; } }