如何更改JFileChooser对话框的标题

时间:2015-05-11 19:55:22

标签: java

我使用JFileChooser.showOpenDialog打开对话框。当它出现时,有"打开"在对话框的标题上。我想把它改成"添加"因为我的代码是用于添加新文件。有人会告诉我该怎么做。提前谢谢。

有我的对话框。 enter image description here

2 个答案:

答案 0 :(得分:5)

JFileChooser的showOpenDialog没有为您提供更改对话框标题的选项(请参阅docs)。你必须使用更多的代码。 documentation中的代码示例非常接近:

JFileChooser chooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter(
    "JPG & GIF Images", "jpg", "gif");
chooser.setFileFilter(filter);
chooser.setDialogTitle("Add new file");
int returnVal = chooser.showOpenDialog(parent);

答案 1 :(得分:4)

可以在过滤器之前自定义对话框。

JFileChooser fc = new JFileChooser();

fc.setDialogTitle("Title");

fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);