1

我正在制作一个类似于带有代码突出显示的文本编辑器的应用程序。

当我尝试保存一些文本时,我希望在 JFileChooser 上显示一个固定的文件名,该文件名在浏览目录时不会更改。

我这样做的原因是因为用户要保存 .java 文件。该文件应该具有给定类的名称。让用户输入名称只会导致错误,这会减慢编译速度并且没有意义。

这就是我的自动取款机:

final JFileChooser fc = new JFileChooser();
    fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
    int userSelection = fc.showSaveDialog(null);
    if (userSelection == JFileChooser.APPROVE_OPTION) {
        File f = fc.getSelectedFile();
        String name = f.getAbsolutePath();
        File newFile = new File(name);//the text is written on this file.
    }
4

1 回答 1

0

我不知道确切,如果这对你有帮助。但是我遇到了类似的问题并像这样解决了它:

final JFileChooser fc = new JFileChooser();
    fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
    int userSelection = fc.showSaveDialog(null);
    if (userSelection == JFileChooser.APPROVE_OPTION) {
        File f = fc.getSelectedFile();
        String name = f.getAbsolutePath();
        File newFile = new File(name + "\\" + yourfilenamehere);//the text is written on this file.
    }

我担心,这听起来太容易了......只需用所需的(固定)文件名替换“yourfilenamehere”。

于 2013-05-24T14:44:24.503 回答