執行個體程式:
1、利用 Scanner 實現從鍵盤讀入integer或float 型資料
複製代碼 代碼如下://import java.io.*;
import java.util.*;
public class InputTest{
public static void main(String[] args){
Scanner in = new Scanner(System.in); //Scanner類
System.out.println("Please input a float number:");
float a = in.nextFloat(); //接收float資料
System.out.println("Please input a string: "); //這裡試了一下輸入String資料,但中間有空格就不能顯示,Scanner類還不具有這功能
Scanner str = new Scanner(System.in);
System.out.println("The string is :" + str.next());
System.out.println("The float number is: " + a);
for(int i = 0;i < 4;i++){
System.out.println("Please input a int number: "); //for迴圈接收int型資料
int b = in.nextInt();
System.out.println("The int number is: " + b);
}
}
}
2、利用 BufferedReader實現從鍵盤讀入字串並寫進檔案abc.txt中
複製代碼 代碼如下:import java.io.*;
public class InputTest{
public static void main(String[] args) throws IOException{
BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter buf2 = new BufferedWriter(new FileWriter("abx.txt"));
String str = buf.readLine();
while(!str.equals("exit")){
buf2.write(str);
buf2.newLine();
str = buf.readLine();
}
buf.close();
buf2.close();
}
}
關於JDK1.5 Scanner類的說明
Scanner是SDK1.5新增的一個類,可是使用該類建立一個對象.
Scanner reader=new Scanner(System.in);
然後reader對象調用下列方法(函數),讀取使用者在命令列輸入的各種資料類型:
next.Byte(),nextDouble(),nextFloat,nextInt(),nextLine(),nextLong(),nextShot()
使用nextLine()方法輸入行中可能包含空格.如果讀取的是一個單詞,則可調用.next()方法
3、Scanner和BufferedReader的區別
在命令列模式下要輸入資料至程式中時,我們可以使用標準輸入串對象System.in.但是,我們並不經常直接使用它,因為System.in提供的 read方法每次只能讀取一個位元組的資料,而我們平時所應用的通常是讀取一個字串或者是一個數字,所以read方法所以提供的功能,對我們來說並沒有太大的用處.
在Java SE 6中,可以使用Scanner類取得使用者的輸入,Scanner類位於java.util包中,如果你要使用Scanner取得使用者輸入的話,要加上 import java.util.Scanner;這條語句.import的功能是告訴編譯器,你將使用java.util包中的Scanner類.
我們來看一個例子:
複製代碼 代碼如下:import java.util.Scanner;
public class TestScanner{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
System.out.println("請輸入一個字串:");
System.out.println("您輸入的字串是:" + scan.next());
}
}
運行上面的程式,你將會看到你輸入的字串將在下面原樣顯示出來.
我們來看看這個程式中每條語句的意思:
new是建立一個對象,程式中new的意思是建立了一個Scanner類的對象scan.但是在建立Scanner類的對象時,需要用System.in 作為它的參數,也可以將Scanner看作是System.in對象的支援者,System.in取得使用者輸入的內容後,交給Scanner來作一些處理.
Scanner類中提供了多個方法:
next():取得一個字串;
nextInt():將取得的字串轉換成int類型的整數;
nextFloat():將取得的字串轉換成float型;
nextBoolean():將取得的字串轉換成boolean型;
用Scanner獲得使用者的輸入非常的方便,但是Scanner取得輸入的依據是空格符,包括空格鍵,Tab鍵和Enter鍵.當按下這其中的任一鍵時,Scanner就會返回下一個輸入. 當你輸入的內容中間包括空格時,顯然,使用Scanner就不能完整的獲得你輸入的字串.這時候我們可以考慮使用BufferedReader類取得輸入.其實在Java SE 1.4及以前的版本中,尚沒有提供Scanner方法,我們獲得輸入時也是使用BufferReader的.
BufferedReader類位於java.io包中,所以要使用這個類,就要引入java.io這個包:import java.io.BufferedReader.
使用BufferedReader對象的readLine()方法必須處理java.io.IOException異常(Exception).
使用BufferedReader來取得輸入,理解起來要複雜得多.但是使用這個方法是固定的,每次使用前先如法炮製就可以了.
BufferedReader buffer = new BufferedReader(new InputStreamReader(System.in));
String text = buffer.readLine();
readLine()方法會返回使用者在按下Enter鍵之前的所有字元輸入,不包括最後按下的Enter返回字元.
完整的樣本程式如下:
複製代碼 代碼如下:import java.io.BufferedReader;
public class TestBufferedReader{
public static void main(String[] args) throws IOException{
BufferedReader buffer = new BufferedReader(new InputStreamReader(System.in));
System.out.println("請輸入一串字串");
String text = buffer.readLine();
System.out.println("您輸入的字串是:" + text);
}
}
4、如下面的程式所示:class StringTest
複製代碼 代碼如下:{
public static void main(String[] args)
{
System.out.println(args[0]);
System.out.println(args[1]);
System.out.println(args[2]);
}
}
在執行語句即:java + 類名後面輸入內容,即會被args接收,
因為args是接收命令列參數的。