gpt4 book ai didi

java - 从文件中读取可变行数

转载 作者:行者123 更新时间:2023-12-01 23:37:54 24 4
gpt4 key购买 nike

我正在尝试从文件中读取可变数量的行,希望使用 InputStream 对象。我想做的(在非常普遍的意义上)如下:

Pass in long maxLines to function
Open InputStream and OutputStream for reading/writing
WHILE (not at the end of read file AND linesWritten < maxLines)
write to file

我知道 InputStream 处理的是字节,而不是行,所以我不确定这是否是一个很好的 API。如果有人对解决方案(其他 API、不同算法)有什么建议,那将非常有帮助。

最佳答案

你可以有这样的东西

       BufferedReader br = new BufferedReader(new FileReader("FILE_LOCATION"));
while (br.readLine() != null && linesWritten < maxLines) {
//Your logic goes here
}

关于java - 从文件中读取可变行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18382018/

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