如何在客户端使用JFileChooser?

时间:2016-11-01 14:02:39

标签: java linux server client jfilechooser

我有一个程序可以将csv文件保存到用户的PC中。 我使用了JFilechooser,它可以与本地服务器一起使用。 但是,在我在服务器(linux)上部署程序并在我的PC(窗口)上使用它之后,它不起作用。

public String fileChooser()
{
    String csvPath;

    JFileChooser chooser = new JFileChooser("");
    chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);

    int userSelection = chooser.showSaveDialog(null);
    System.out.println("userSelection : "+userSelection);

    if(userSelection != JFileChooser.APPROVE_OPTION)
    {
        //JOptionPane.showMessageDialog(null, "Please select the path.");
        System.out.println("Not open");
        csvPath = null;
    }else{
        csvPath = chooser.getSelectedFile().getPath();
        System.out.println("csvPath :"+csvPath);
    }
    return csvPath;
}

如何使用JFileChooser将文件保存到客户端?

0 个答案:

没有答案