/**
* 复制单个文件
* @param oldPath String 原文件路径 如:c:/fqf.txt
* @param newPath String 复制后路径 如:f:/fqf.txt
* @return boolean
*/
public void copyFile(String oldPath, String newPath) {
try {
int bytesum = 0;
int byteread = 0;
File oldfile = new File(oldPath);
if (oldfile.exists()) { //文件存在时
InputStream inStream = new FileInputStream(oldPath); //读入原文件
FileOutputStream fs = new FileOutputStream(newPath);
byte[] buffer = new byte[1444];
int length;
while ( (byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; //字节数 文件大小
System.out.println(bytesum);
fs.write(buffer, 0, byteread);
}
inStream.close();
}
}
cat
【Android】拷贝文件到另一个目录下
最新推荐文章于 2023-07-24 10:48:57 发布
本文介绍了如何在Android应用中从assets目录高效且安全地拷贝文件到另一个目录。强调了在编写代码时避免过度依赖try/catch,并在拷贝前检查文件属性,以确保操作的正确性和可靠性。
摘要由CSDN通过智能技术生成