0

我创建一个这样的文件:

PrintWriter out = new PrintWriter(
                     new FileOutputStream(
                      new File("C:/Users/.../Desktop/Server Recipe Log.txt"), 
                      true));
             out.println("serverText");
             out.close();

但我不想将文件保存在我的桌面上 - 我想打开另存为对话框来选择我想要保存文件的位置。

我已经尝试了一些框架教程,但我不想创建任何框架,我想使用本机系统对话框。

4

2 回答 2

2

..想要使用本机系统对话框。

您使用了错误的语言。最接近的 Java 提供的是 ajava.awt.FileDialog或 ajavax.swing.JFileChooser使用本机 PLAF。

例如

import java.awt.*;
import javax.swing.*;

class FileDialogs {

    public static void main(String[] args) {
        Runnable r = new Runnable() {

            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (Exception useDefault) {
                }
                FileDialog fd = new FileDialog((Frame)null);
                fd.setVisible(true);
                
                JFileChooser fc = new JFileChooser();
                fc.showSaveDialog(null);
            }
        };
        // Swing GUIs should be created and updated on the EDT
        // http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html
        SwingUtilities.invokeLater(r);
    }
}
于 2013-01-11T10:18:30.453 回答
1
JFileChooser jl = new JFileChooser();
jl.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int save = jl.showSaveDialog(null);
if (JFileChooser.APPROVE_OPTION == save){
PrintWriter out = new PrintWriter(
                 new FileOutputStream(
                  new File(jl.getSelectedFile().getAbsolutePath()+"/name.txt"), 
                  true));
         out.println("serverText");
         out.close();
}
于 2013-01-11T11:08:55.747 回答