Java Scanner nextLine() 方法
示例
逐行输出文件内容
import java.io.File; // Import the File class
import java.io.FileNotFoundException; // Import this class to handle errors
import java.util.Scanner; // Import the Scanner class to read text files
public class ReadFile {
public static void main(String[] args) {
try {
File myObj = new File("filename.txt");
Scanner myReader = new Scanner(myObj);
while (myReader.hasNextLine()) {
String data = myReader.nextLine();
System.out.println(data);
}
myReader.close();
} catch (FileNotFoundException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
试一试 »
定义和用法
该 nextLine()
方法返回一个字符串,其中包含扫描器中到下一个换行符的所有字符,或者如果扫描器中没有更多换行符,则包含扫描器中的所有字符。
语法
public String nextLine()
技术细节
返回值 | 一个 String 包含扫描器中下一行的文本的值。 |
---|---|
抛出 |
NoSuchElementException - 如果扫描器中没有更多行。IllegalStateException - 如果扫描器已关闭。 |