gpt4 book ai didi

java - 如何从文本文件填充 JComboBox?

转载 作者:行者123 更新时间:2023-12-02 07:31:53 27 4
gpt4 key购买 nike

如何从文本文件填充 JComboBox

最佳答案

非常模糊的问题。您是说您想要每行一个条目吗?如果是这样,你想使用类似 BufferedReader 的东西,读取所有行,将它们保存为字符串数组。创建一个新的 JComboBox,传入该 String 构造函数。

BufferedReader input = new BufferedReader(new FileReader(filePath));
List<String> strings = new ArrayList<String>();
try {
String line = null;
while (( line = input.readLine()) != null){
strings.add(line);
}
}

catch (FileNotFoundException e) {
System.err.println("Error, file " + filePath + " didn't exist.");
}
finally {
input.close();
}

String[] lineArray = strings.toArray(new String[]{});

JComboBox comboBox = new JComboBox(lineArray);

关于java - 如何从文本文件填充 JComboBox?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3173149/

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