1. 程式人生 > >在Java中使用鍵盤輸入資料的幾種方法

在Java中使用鍵盤輸入資料的幾種方法

   package InputTest;
 
 import java.io.*;
 public class DataKeyboardInput3 {
 
  /**利用字元輸入流來進行輸入處理
   * @param args
   */
  public static void main(String[] args) throws IOException {
   // TODO Auto-generated method stub
          BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
          String str="";
          int num = 0;
          try{
           str=br.readLine();
           num=Integer.parseInt(str);
          }catch(IOException e){
           System.out.println(e.toString());
          }System.out.println(num);
  }
 }
1.4 利用文字掃描類