我使用
选择了文件File file = fileChooser.getSelectedFile();
现在,当用户单击“保存”按钮时,我想将用户选择的此文件写入另一个位置。如何使用swing实现这一目标?
答案 0 :(得分:2)
要选择您需要的文件,
JFileChooser open = new JFileChooser();
open.showOpenDialog(this);
selected = open.getSelectedFile().getAbsolutePath(); //selected is a String
...并保存副本,
JFileChooser save = new JFileChooser();
save.showSaveDialog(this);
save.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
tosave = fileChooser.getSelectedFile().getAbsolutePath(); //tosave is a String
new CopyFile(selected,tosave);
... copyFile类将类似于
public class CopyFile {
public CopyFile(String srFile, String dtFile) {
try {
File f1 = new File(srFile);
File f2 = new File(dtFile);
InputStream in = new FileInputStream(f1);
OutputStream out = new FileOutputStream(f2);
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
System.out.println("File copied.");
} catch (FileNotFoundException ex) {
System.out.println(ex.getMessage() + " in the specified directory.");
System.exit(0);
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
}
另请看这个问题:How to save file using JFileChooser? #MightBeHelpfull
答案 1 :(得分:1)
Swing只会给你location / File对象。您将不得不自己编写新文件。
要复制该文件,我将向您指出这个问题:Standard concise way to copy a file in Java?
答案 2 :(得分:0)
将文件读入InputStream
,然后将其写入OutputStream
。
答案 3 :(得分:0)
如果您使用的是JDK 1.7,则可以使用提供多种复制方法的java.nio.file.Files类将文件复制到给定的命运。