私はすでに古い質問を見たことがあり、答えは以下のようなコードでしたが、netbeans を使用する場合、comboBox は既に設計されています。だから私は(あなたが想像するように、私は Java と netbeans にまったく慣れていないのです!)、コードの最後の行を変更する必要があり、このコードをどこに挿入すればよいのでしょうか?
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);