I have already seen an older question and the answer was a code like below, but if I use netbeans I have already designed my comboBox. So I think (I am quite new in Java and netbeans as you imagine!) that the last line of the code should be changed and where do I insert this code?
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);
