Android下保存简单网页到本地(包括简单图片链接转(2)

private void deleteFile(File file) {
  if (file.exists()) { // 判断文件是否存在
   if (file.isFile()) { // 判断是否是文件
    file.delete(); // delete()方法 你应该知道 是删除的意思;
   } else if (file.isDirectory()) { // 否则如果它是一个目录
    File files[] = file.listFiles(); // 声明目录下所有的文件 files[];
    for (int i = 0; i < files.length; i++) { // 遍历目录下所有的文件
     this.deleteFile(files[i]); // 把每个文件 用这个方法进行迭代
    }
   }
   file.delete();
  } else {
   //
  }
 }
 
 private String formatPath(String path) {
        if (path != null && path.length() > 0) {
            path = path.replace("\\", "_");
            path = path.replace("/", "_");
            path = path.replace(":", "_");
            path = path.replace("*", "_");
            path = path.replace("?", "_");
            path = path.replace("\"", "_");
            path = path.replace("<", "_");
            path = path.replace("|", "_");
            path = path.replace(">", "_");
        }
        return path;
    }
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/14649d61432a8ce5c719a21814143ec5.html