File
Classの配列を に渡していJComboBox
ます。GUIで選択したファイルのパス全体を表示しているように。コンボボックスにファイル名だけを表示したい。
コードは次のとおりです。
public void generateGui(File[] files){
// main frame
frame = new JFrame("All In One");
frame.setSize(500, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
JPanel scriptPanel = new JPanel();
JCombobox scriptList = new JComboBox(files); // Passing the array of File class
scriptPanel.add(scriptList);
frame.add(scriptPanel,BorderLayout.NORTH);
frame.setVisible(true);