我将File
类的数组传递给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);
答案 0 :(得分:4)