亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
沙河市| 大连市| 宽甸| 华阴市| 渭源县| 昭苏县| 荔浦县| 衡山县| 安泽县| 达拉特旗| 交口县| 思茅市| 康定县| 崇阳县| 凯里市| 平陆县| 襄樊市| 增城市| 靖州| 青龙| 孙吴县| 全椒县| 绍兴县| 许昌市| 新沂市| 松阳县| 辉南县| 调兵山市| 闽侯县| 鸡西市| 西城区| 客服| 望城县| 彩票| 泸州市| 孟津县| 南陵县| 太保市| 南乐县| 延川县| 崇阳县|