JFileChooser.showSaveDialog(…) - 更改目录后保留建议的文件名

发布于 2024-08-15 01:03:24 字数 259 浏览 6 评论 0原文

关于如何设置默认文件名 对于 JFileChooser 控件。

我在切换目录时保留默认文件名时遇到一些问题。 现在,当我这样做时,我提供的原始文件名会被新目录本身的路径覆盖。

有什么办法可以避免这种行为吗?

There are already some questions about how to set a default file name for a JFileChooser control.

I'm having a few problems with preserving that default filename when switching directories.
Right now, when I do that, the original filename I supplied get over overwritten by the path of the new directory itself.

Is there anything can be done in order to avoid this behavior?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦萦几度 2024-08-22 01:03:25

您可以将 PropertyListener 添加到文件选择器,如果您获得“directoryChanged”属性,请再次设置默认文件。

例如:

    JFileChooser chooser = new JFileChooser();
    chooser.addPropertyChangeListener( new PropertyChangeListener() {
      public void propertyChange( PropertyChangeEvent evt )
      {
        if ( evt.getPropertyName().equals( "directoryChanged" ) )
        {
          JFileChooser me = (JFileChooser)evt.getSource(); 
          me.setSelectedFile( new File( "text.txt" ) );
        }
      }
    });

看起来它可能会做你想要的事情,但更多的是一种解决方法而不是正确的解决方案。

You could add a PropertyListener to the file chooser, and if you get a "directoryChanged" property, set your default file again.

For example:

    JFileChooser chooser = new JFileChooser();
    chooser.addPropertyChangeListener( new PropertyChangeListener() {
      public void propertyChange( PropertyChangeEvent evt )
      {
        if ( evt.getPropertyName().equals( "directoryChanged" ) )
        {
          JFileChooser me = (JFileChooser)evt.getSource(); 
          me.setSelectedFile( new File( "text.txt" ) );
        }
      }
    });

It seems like it might do what you want, but is more a workaround than a proper solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文