gpt4 book ai didi

java - 如何在java中备份文件?

转载 作者:行者123 更新时间:2023-11-29 03:23:47 24 4
gpt4 key购买 nike

实际上它只是复制一个 text.txt 文件。我知道如何使用文件选择器来选择文件,但这是我所知道的。

我能做到:

public BasicFile()
{
JFileChooser choose = new JFileChooser(".");
int status = choose.showOpenDialog(null);

try
{
if (status != JFileChooser.APPROVE_OPTION) throw new IOException();

f = choose.getSelectedFile();

if (!f.exists()) throw new FileNotFoundException();
}
catch(FileNotFoundException e)
{
display(1, e.toString(), "File not found ....");
}
catch(IOException e)
{
display(1, e.toString(), "Approve option was not selected");
}

}

最佳答案

路径对象非常适合复制文件,
尝试使用此代码复制文件,

Path source = Paths.get("c:\\blabla.txt");
Path target = Paths.get("c:\\blabla2.txt");
try {
Files.copy(source, target);
} catch (IOException e1) {
e1.printStackTrace();
}

关于java - 如何在java中备份文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22135156/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com