gpt4 book ai didi

java - 使用文本文件填充 JCombobox

转载 作者:行者123 更新时间:2023-12-02 00:03:32 24 4
gpt4 key购买 nike

Possible Duplicate:
How do I populate JComboBox from a text file?

我是 Java 编程新手,只有 2 个月的经验。谁能帮我填写JComboBox一个由 5 行组成的文本文件?我在 Google 上查看了代码,但不断出现错误。

最佳答案

private void populate() {
String[] lines;
lines = readFile();

jComboBox1.removeAllItems();

for (String str : lines) {
jComboBox1.addItem(str);
}
}

这里是readFile()。 From this site

private String[] readFile() {
ArrayList<String> arr = new ArrayList<>();
try {
FileInputStream fstream = new FileInputStream("textfile.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
while ((strLine = br.readLine()) != null) {
arr.add(strLine);
}
in.close();
} catch (Exception e) {
}
return arr.toArray(new String[arr.size()]);
}

关于java - 使用文本文件填充 JCombobox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14368268/

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