在JDK API關於Scanner提供了比較多的構造方法與方法。那麼如今列出一些在平時工做中比較經常使用的方法,僅供你們參考: java
構造方法: url
- public Scanner(File source) throws FileNotFoundException
- public Scanner(String source)
- public Scanner(InputStream source) //用指定的輸入流來建立一個Scanner對象
方法: spa
- public void close() //關閉
- public Scanner useDelimiter(String pattern) //設置分隔模式 ,String能夠用Pattern取代
- public boolean hasNext() //檢測輸入中,是否,還有單詞
- public String next() //讀取下一個單詞,默認把空格做爲分隔符
- public String nextLine() //讀行
- 註釋:從hasNext(),next()繁衍了大量的同名不一樣參方法,這裏不一一列出,感興趣的,能夠查看API
如下一個綜合例子: code
- package com.ringcentral.util;
- import java.util.*;
- import java.io.*;
- /**
- * author @dylan
- * date @2012-5-27
- */
- public class ScannerTest {
- public static void main(String[] args) {
- file_str(true);
- reg_str();
- }
- /**
- *
- * @param flag : boolean
- */
- public static void file_str(boolean flag){
- String text1= "last summber ,I went to the italy";
- //掃描本文件,url是文件的路徑
- String url = "E:\\Program Files\\C _ Code\\coreJava\\src\\com\\ringcentral\\util\\ScannerTest.java";
- File file_one = new File(url);
- Scanner sc= null;
- /*
- * 增長一個if語句,經過flag這個參數來決定使用那個構造方法。
- * flag = true :輸入結果爲本文件的內容。
- * flag = false :輸入結果爲 text1的值。
- */
- if(flag){
- try {
- sc =new Scanner(file_one);
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- }
- }else{
- sc=new Scanner(text1);
- }
- while(sc.hasNext())
- System.out.println(sc.nextLine());
- //記得要關閉
- sc.close();
- }
- public static void reg_str(){
- String text1= "last summber 23 ,I went to 555 the italy 4 ";
- //若是你只想輸入數字:23,555,4;能夠設置分隔模式,把非數字進行過濾。
- Scanner sc = new Scanner(text1).useDelimiter("\\D\\s*");
- while(sc.hasNext()){
- System.out.println(sc.next());
- }
- sc.close();
- }
- }
- public static void input_str(){
- Scanner sc = new Scanner(System.in);
- System.out.println(sc.nextLine());
- sc.close();
- System.exit(0);
- }
本文出自 「一米陽光」 博客,請務必保留此出處http://isunshine.blog.51cto.com/2298151/880038 對象