Java中可以使用以下幾種方式讀取log文件:
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream("path/to/logfile.log")));
String line;
while ((line = reader.readLine()) != null) {
// 處理每一行日志內容
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
List<String> lines = Files.readAllLines(Paths.get("path/to/logfile.log"));
for (String line : lines) {
// 處理每一行日志內容
}
} catch (IOException e) {
e.printStackTrace();
}
try {
List<String> lines = IOUtils.readLines(new FileInputStream("path/to/logfile.log"), Charset.defaultCharset());
for (String line : lines) {
// 處理每一行日志內容
}
} catch (IOException e) {
e.printStackTrace();
}
以上是幾種常見的讀取log文件的方式,你可以根據具體的需求選擇合適的方法來讀取log文件。