Java中從命令控制檯輸入資料的幾種常用方法
1、使用標準輸入串物件System.in
System.in.read( )一次只讀入一個位元組資料,而我們通常要取得一個字串或一組數字,這就很不適合,需要其他方法取得這樣的輸入,這時可以使用java.util.Scanner類。
2、使用Scanner取得一個字串或一組數字
import java.util.Scanner;
public class ScannerDemo...
{
public static void main( String[ ] args )
...
{
Scanner sc = new Scanner( System.in );
System.out.print( "Please enter a string : " );
System.out.print( "Your input is : " + sc.next( ) );
}
}
在新增一個Scanner物件時需要一個System.in物件,因為實際上還是System.in在取得使用者輸入。
Scanner的next( )方法用以取得使用者輸入的字串;
nextInt( )將取得的輸入字串轉換為整數型別;
同樣,nextFloat( )轉換成浮點型;
nextBoolean( )轉換成布林型。
3、使用BufferedReader取得含空格的輸入
Scanner取得的輸入以space, tab, enter 鍵為結束符,要想取得包含space在內的輸入,可以用java.io.BufferedReader類來實現。
例如:
import java.io.*;
public class BufferedReaderDemo {
public static void main(String[] args) throws IOException
{ //使用BufferedReader的readLine( )方法 //必須要處理java.io.IOException異常
BufferedReader br = new BufferedReader(new InputStreamReader( System.in ) ) ; //java.io.InputStreamReader繼承了Reader類
String tx = br.readLine( );
System.out.println( tx ); }
}
java初學者往往對從控制檯輸入資料感到困難,本文提供了一種簡單的方法從控制檯輸入資料。java程式控制臺輸入資料的一種方法
import java.awt.*;
import javax.swing.*;
class Aa{public static void main(String args[])
{String ss=JOptionPane.showInputDialog("","請輸入一個數");
try{ int i=Integer.parseInt(ss);
System.out.println("i="+i);
}
catch(Exception e)
{System.out.println("輸入的資料型別不對,程式將退出");
System.exit(0);
}}}