更改JComboBox的标签

时间:2013-07-22 06:32:02

标签: java swing file label jcombobox

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

1 个答案:

答案 0 :(得分:4)

使用ListCellRenderer仅显示文件名。虽然它们是文件,但您也可能希望显示图标,如this answer

中所示

另请参阅this answerFileListCellRenderer