91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java讀取txt文件的方法有哪些

小億
94
2023-06-26 13:11:26
欄目: 編程語言

  1. 使用FileReader和BufferedReader類:
try {
File file = new File("filename.txt");
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr);
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
br.close();
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
  1. 使用Scanner類:
try {
File file = new File("filename.txt");
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
System.out.println(line);
}
scanner.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
  1. 使用Files類:
try {
Path path = Paths.get("filename.txt");
List<String> lines = Files.readAllLines(path);
for (String line : lines) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}

0
西乌| 花莲县| 竹溪县| 旬阳县| 土默特左旗| 贡嘎县| 丰原市| 怀安县| 曲靖市| 高州市| 罗田县| 织金县| 寻甸| 黄浦区| 安平县| 台北县| 湘潭市| 东乌| 长子县| 宁远县| 大埔区| 东台市| 无棣县| 许昌市| 莲花县| 陈巴尔虎旗| 蒙城县| 芮城县| 融水| 斗六市| 梅州市| 大悟县| 柳河县| 白河县| 夏邑县| 虎林市| 青海省| 长宁县| 龙江县| 江口县| 北辰区|