0

我将FileClass 的数组传递给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);
4

1 回答 1

4

使用 aListCellRenderer仅显示文件名。尽管它们是文件,但您可能也希望显示该图标,如本答案所示

另请参阅this answerFileListCellRenderer

于 2013-07-22T06:36:36.800 回答