gpt4 book ai didi

java - For 循环中出现意外的 While 标记

转载 作者:行者123 更新时间:2023-11-30 05:35:59 26 4
gpt4 key购买 nike

我正在尝试将文件夹中的图像添加到数组列表中,但是我在 for 循环开始时收到“意外标记”,“无法解析符号‘长度’和‘预期标识符’”控制变量递增。

我使用 Intellij 作为我的 IDE

import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class Cards {
File path = new File("/images");
List imageCollection = new ArrayList();
File [] files = path.listFiles();
for(int i = 0; i < files.length; i++){
if (files[i].isFile()) {
imageCollection.add(files[i]);
}
}
}

最佳答案

你忘记声明一个方法

public class Cards {

void readCollection() { // <-- Here!
File path = new File("/images");
List imageCollection = new ArrayList();
File[] files = path.listFiles();
for (int i = 0; i < files.length; i++) {
if (files[i].isFile()) {
imageCollection.add(files[i]);
}
}
} // Don't forget the closing bracket
}

关于java - For 循环中出现意外的 While 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56615100/

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