》 将只读文件夹下的文件复制出来,然后自己来处理,即将原路径下文件读到相应文件夹下

public static boolean copyFile(String oldPath, String newPath) {
boolean bResult = false;
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];
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; // 字节数 文件大小
// System.out.println(bytesum);
fs.write(buffer, 0, byteread);
}
inStream.close();
fs.close();
bResult = true;
}
} catch (Exception e) {
e.printStackTrace();
}


return bResult;
}

更多相关文章

  1. 一款常用的 Squid 日志分析工具
  2. GitHub 标星 8K+!一款开源替代 ls 的工具你值得拥有!
  3. RHEL 6 下 DHCP+TFTP+FTP+PXE+Kickstart 实现无人值守安装
  4. Linux 环境下实战 Rsync 备份工具及配置 rsync+inotify 实时同步
  5. Android(安卓)UI 之 ListView
  6. Android(安卓)requires compiler compliance level 5.0 or 6.0.
  7. LinearLayout中添加分割线
  8. Android常用的Gradle配置和加速编译
  9. Animation(2、帧动画)

随机推荐

  1. windows下载android源代码
  2. Android(安卓)使用 TableLayout 布局拉伸
  3. Android(安卓)Gesture Detector
  4. Android(安卓)CTS 测试总结
  5. android studio 3.6.0 绑定视图新特性的
  6. Android(安卓)Studio开发-day3 UI界面设
  7. Android中的sqlite简单示例
  8. android ActivityManagerService服务详解
  9. 8 Android平台开发-WIFI 驱动移植 -- 详
  10. android -h 'xcopy' 不是内部或外部命令