gpt4 book ai didi

java - 打开和分析 ASCII 文件

转载 作者:行者123 更新时间:2023-11-30 07:36:35 25 4
gpt4 key购买 nike

如何打开和读取 ASCII 文件?我正在努力打开和检索文件的内容,并用图表对其进行分析。

最佳答案

基于文本的文件应使用 java.io.Reader 打开.最简单的方法是使用 BufferedReader阅读 line by line在一个循环中。

这是一个启动示例:

BufferedReader reader = null;

try {
reader = new BufferedReader(new FileReader("/path/to/file.txt"));
for (String line; (line = reader.readLine()) != null;) {
// Do your thing with the line. This example is just printing it.
System.out.println(line);
}
} finally {
// Always close resources in finally!
if (reader != null) try { reader.close(); } catch (IOException ignore) {}
}

要在标记中进一步分割文件内容,您可能会发现 Scanner更有用。

另见:

关于java - 打开和分析 ASCII 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3454659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com