位置:首頁 > Java技術 > Java.util包 > java.util.Scanner.nextLine()方法實例

java.util.Scanner.nextLine()方法實例

java.util.Scanner.nextLine() 方法,此scanner執行當前行,並返回跳過的輸入信息。此方法返回當前行的其餘部分,不包括任何行分隔符結尾。的位置設置到下一行的開頭。因為這種方法會繼續在輸入信息中查找行分隔符,它可能會緩衝所有輸入的搜索行跳過,如果冇有行分隔符都存在。

聲明

以下是java.util.Scanner.nextLine()方法的聲明

public String nextLine()

參數

  • NA

返回值

此方法返回跳過的行

異常

  • NoSuchElementException -- 如果冇有發現行

  • IllegalStateException -- 如果此scanner 已關閉

例子

下麵的示例演示java.util.Scanner.nextLine()方法的用法。

package com.yiibai;

import java.util.*;

public class ScannerDemo {

   public static void main(String[] args) {

      String s = "Hello World! 
 3 + 3.0 = 6.0 true ";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // print the next line
      System.out.println("" + scanner.nextLine());

      // print the next line again
      System.out.println("" + scanner.nextLine());

      // close the scanner
      scanner.close();
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Hello World! 
 3 + 3.0 = 6.0 true