gpt4 book ai didi

java - 如何在android中复制文件?

转载 作者:太空宇宙 更新时间:2023-11-03 11:16:09 25 4
gpt4 key购买 nike

在我的应用程序中,我想用不同的名称(我从用户那里得到)保存某个文件的副本

我真的需要打开文件的内容并将其写入另一个文件吗?

最好的方法是什么?

最佳答案

要复制文件并将其保存到目标路径,您可以使用以下方法。

public static void copy(File src, File dst) throws IOException {
InputStream in = new FileInputStream(src);
try {
OutputStream out = new FileOutputStream(dst);
try {
// Transfer bytes from in to out
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
} finally {
out.close();
}
} finally {
in.close();
}
}

在 API 19+ 上,您可以使用 Java 自动资源管理:

public static void copy(File src, File dst) throws IOException {
try (InputStream in = new FileInputStream(src)) {
try (OutputStream out = new FileOutputStream(dst)) {
// Transfer bytes from in to out
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
}
}
}

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

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