gpt4 book ai didi

java 。编写加载文件的最快方法

转载 作者:行者123 更新时间:2023-12-01 08:10:03 25 4
gpt4 key购买 nike

如何以最短的行数将 N 行文件加载到字符串 ArrayList 中。

这就是我所拥有的,有人对如何减少行数和对象有什么建议吗?

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;

public class FileLoad {

public static void main(String[] args) throws IOException, FileNotFoundException {
List<String> hs = new ArrayList<String>();
BufferedReader br = new BufferedReader(new FileReader(args[0]));
String line;
while ((line = br.readLine()) != null) {
hs.add(line);
}
}
}

最佳答案

在 Java 7+ 中,一行:

List<String> lines = Files.readAllLines(Paths.get(args[0]), Charset.forName("UTF-8"));

关于 java 。编写加载文件的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18187987/

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