gpt4 book ai didi

java - 将文件中的每个单词放入数组列表中

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

对于缓冲读取器来说是新手,我正在尝试将文件放入数组列表中...这就是我到目前为止所拥有的。

  FileReader in = new FileReader(latestFile);
BufferedReader br = new BufferedReader(in);

int arrayCount = 0;
String[] array = null;

String nextLine = null;
if ((nextLine = br.readLine()) != null ) {
arrayCount = array.length;
array[arrayCount - 1] = nextLine.split("\\s+");

}

谁能解释一下我做错了什么?

最佳答案

只需更改 String[] array = null;List<String> arrayList = new ArrayList<>();array[arrayCount - 1] = nextLine.split("\\s+");arrayList.add(nextLine.split("\\s+")); .

即使用ArrayList而不是未定义的数组。

关于java - 将文件中的每个单词放入数组列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33966363/

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