我将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);