工具类之 FileUtils
Posted Bonnie_ξ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了工具类之 FileUtils相关的知识,希望对你有一定的参考价值。
pom
<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency>
api
getFileByPath : 根据文件路径获取文件
isFileExists : 判断文件是否存在
isDir : 判断是否是目录
isFile : 判断是否是文件
createOrExistsDir : 判断目录是否存在,不存在则判断是否创建成功
createOrExistsFile : 判断文件是否存在,不存在则判断是否创建成功
createFileByDeleteOldFile : 判断文件是否存在,存在则在创建之前删除
copyDir : 复制目录
copyFile : 复制文件
moveDir : 移动目录
moveFile : 移动文件
deleteDir : 删除目录
deleteFile : 删除文件
listFilesInDir : 获取目录下所有文件
listFilesInDir : 获取目录下所有文件包括子目录
listFilesInDirWithFilter : 获取目录下所有后缀名为suffix的文件
listFilesInDirWithFilter : 获取目录下所有后缀名为suffix的文件包括子目录
listFilesInDirWithFilter : 获取目录下所有符合filter的文件
listFilesInDirWithFilter : 获取目录下所有符合filter的文件包括子目录
searchFileInDir : 获取目录下指定文件名的文件包括子目录
writeFileFromIS : 将输入流写入文件
writeFileFromString : 将字符串写入文件
getFileCharsetSimple : 简单获取文件编码格式
getFileLines : 获取文件行数
readFile2List : 指定编码按行读取文件到List
readFile2SB : 指定编码按行读取文件到StringBuilder中
getFileSize : 获取文件大小
getFileMD5 : 获取文件的MD5校验码
getDirName : 根据全路径获取最长目录
getFileName : 根据全路径获取文件名
getFileNameNoExtension : 根据全路径获取文件名不带拓展名
getFileExtension : 根据全路径获取文件拓展名
import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.Closeable; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileReader; import java.io.FileWriter; import java.io.FilenameFilter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.util.ArrayList; import java.util.Collections; import java.util.List; import static com.blankj.utilcode.utils.ConstUtils.*; /** * <pre> * author: Blankj * blog : http://blankj.com * time : 2016/8/11 * desc : 文件相关工具类 * </pre> */ public class FileUtils { private FileUtils() { throw new UnsupportedOperationException("u can\'t instantiate me..."); } /** * 根据文件路径获取文件 * * @param filePath 文件路径 * @return 文件 */ public static File getFileByPath(String filePath) { return StringUtils.isSpace(filePath) ? null : new File(filePath); } /** * 判断文件是否存在 * * @param filePath 文件路径 * @return {@code true}: 存在<br>{@code false}: 不存在 */ public static boolean isFileExists(String filePath) { return isFileExists(getFileByPath(filePath)); } /** * 判断文件是否存在 * * @param file 文件 * @return {@code true}: 存在<br>{@code false}: 不存在 */ public static boolean isFileExists(File file) { return file != null && file.exists(); } /** * 判断是否是目录 * * @param dirPath 目录路径 * @return {@code true}: 是<br>{@code false}: 否 */ public static boolean isDir(String dirPath) { return isDir(getFileByPath(dirPath)); } /** * 判断是否是目录 * * @param file 文件 * @return {@code true}: 是<br>{@code false}: 否 */ public static boolean isDir(File file) { return isFileExists(file) && file.isDirectory(); } /** * 判断是否是文件 * * @param filePath 文件路径 * @return {@code true}: 是<br>{@code false}: 否 */ public static boolean isFile(String filePath) { return isFile(getFileByPath(filePath)); } /** * 判断是否是文件 * * @param file 文件 * @return {@code true}: 是<br>{@code false}: 否 */ public static boolean isFile(File file) { return isFileExists(file) && file.isFile(); } /** * 判断目录是否存在,不存在则判断是否创建成功 * * @param dirPath 文件路径 * @return {@code true}: 存在或创建成功<br>{@code false}: 不存在或创建失败 */ public static boolean createOrExistsDir(String dirPath) { return createOrExistsDir(getFileByPath(dirPath)); } /** * 判断目录是否存在,不存在则判断是否创建成功 * * @param file 文件 * @return {@code true}: 存在或创建成功<br>{@code false}: 不存在或创建失败 */ public static boolean createOrExistsDir(File file) { // 如果存在,是目录则返回true,是文件则返回false,不存在则返回是否创建成功 return file != null && (file.exists() ? file.isDirectory() : file.mkdirs()); } /** * 判断文件是否存在,不存在则判断是否创建成功 * * @param filePath 文件路径 * @return {@code true}: 存在或创建成功<br>{@code false}: 不存在或创建失败 */ public static boolean createOrExistsFile(String filePath) { return createOrExistsFile(getFileByPath(filePath)); } /** * 判断文件是否存在,不存在则判断是否创建成功 * * @param file 文件 * @return {@code true}: 存在或创建成功<br>{@code false}: 不存在或创建失败 */ public static boolean createOrExistsFile(File file) { if (file == null) return false; // 如果存在,是文件则返回true,是目录则返回false if (file.exists()) return file.isFile(); if (!createOrExistsDir(file.getParentFile())) return false; try { return file.createNewFile(); } catch (IOException e) { e.printStackTrace(); return false; } } /** * 判断文件是否存在,存在则在创建之前删除 * * @param filePath 文件路径 * @return {@code true}: 创建成功<br>{@code false}: 创建失败 */ public static boolean createFileByDeleteOldFile(String filePath) { return createFileByDeleteOldFile(getFileByPath(filePath)); } /** * 判断文件是否存在,存在则在创建之前删除 * * @param file 文件 * @return {@code true}: 创建成功<br>{@code false}: 创建失败 */ public static boolean createFileByDeleteOldFile(File file) { if (file == null) return false; // 文件存在并且删除失败返回false if (file.exists() && file.isFile() && !file.delete()) return false; // 创建目录失败返回false if (!createOrExistsDir(file.getParentFile())) return false; try { return file.createNewFile(); } catch (IOException e) { e.printStackTrace(); return false; } } /** * 复制或移动目录 * * @param srcDirPath 源目录路径 * @param destDirPath 目标目录路径 * @param isMove 是否移动 * @return {@code true}: 复制或移动成功<br>{@code false}: 复制或移动失败 */ private static boolean copyOrMoveDir(String srcDirPath, String destDirPath, boolean isMove) { return copyOrMoveDir(getFileByPath(srcDirPath), getFileByPath(destDirPath), isMove); } /** * 复制或移动目录 * * @param srcDir 源目录 * @param destDir 目标目录 * @param isMove 是否移动 * @return {@code true}: 复制或移动成功<br>{@code false}: 复制或移动失败 */ private static boolean copyOrMoveDir(File srcDir, File destDir, boolean isMove) { if (srcDir == null || destDir == null) return false; // 如果目标目录在源目录中则返回false,看不懂的话好好想想递归怎么结束 // srcPath : F:\\\\MyGithub\\\\androidUtilCode\\\\utilcode\\\\src\\\\test\\\\res // destPath: F:\\\\MyGithub\\\\AndroidUtilCode\\\\utilcode\\\\src\\\\test\\\\res1 // 为防止以上这种情况出现出现误判,须分别在后面加个路径分隔符 String srcPath = srcDir.getPath() + File.separator; String destPath = destDir.getPath() + File.separator; if (destPath.contains(srcPath)) return false; // 源文件不存在或者不是目录则返回false if (!srcDir.exists() || !srcDir.isDirectory()) return false; // 目标目录不存在返回false if (!createOrExistsDir(destDir)) return false; File[] files = srcDir.listFiles(); for (File file : files) { File oneDestFile = new File(destPath + file.getName()); if (file.isFile()) { // 如果操作失败返回false if (!copyOrMoveFile(file, oneDestFile, isMove)) return false; } else if (file.isDirectory()) { // 如果操作失败返回false if (!copyOrMoveDir(file, oneDestFile, isMove)) return false; } } return !isMove || deleteDir(srcDir); } /** * 复制或移动文件 * * @param srcFilePath 源文件路径 * @param destFilePath 目标文件路径 * @param isMove 是否移动 * @return {@code true}: 复制或移动成功<br>{@code false}: 复制或移动失败 */ private static boolean copyOrMoveFile(String srcFilePath, String destFilePath, boolean isMove) { return copyOrMoveFile(getFileByPath(srcFilePath), getFileByPath(destFilePath), isMove); } /** * 复制或移动文件 * * @param srcFile 源文件 * @param destFile 目标文件 * @param isMove 是否移动 * @return {@code true}: 复制或移动成功<br>{@code false}: 复制或移动失败 */ private static boolean copyOrMoveFile(File srcFile, File destFile, boolean isMove) { if (srcFile == null || destFile == null) return false; // 源文件不存在或者不是文件则返回false if (!srcFile.exists() || !srcFile.isFile()) return false; // 目标文件存在且是文件则返回false if (destFile.exists() && destFile.isFile()) return false; // 目标目录不存在返回false if (!createOrExistsDir(destFile.getParentFile())) return false; try { return writeFileFromIS(destFile, new FileInputStream(srcFile), false) && !(isMove && !deleteFile(srcFile)); } catch (FileNotFoundException e) { e.printStackTrace(); return false; } } /** * 复制目录 * * @param srcDirPath 源目录路径 * @param destDirPath 目标目录路径 * @return {@code true}: 复制成功<br>{@code false}: 复制失败 */ public static boolean copyDir(String srcDirPath, String destDirPath) { return copyDir(getFileByPath(srcDirPath), getFileByPath(destDirPath)); } /** * 复制目录 * * @param srcDir 源目录 * @param destDir 目标目录 * @return {@code true}: 复制成功<br>{@code false}: 复制失败 */ public static boolean copyDir(File srcDir, File destDir) { return copyOrMoveDir(srcDir, destDir, false); } /** * 复制文件 * * @param srcFilePath 源文件路径 * @param destFilePath 目标文件路径 * @return {@code true}: 复制成功<br>{@code false}: 复制失败 */ public static boolean copyFile(String srcFilePath, String destFilePath) { return copyFile(getFileByPath(srcFilePath), getFileByPath(destFilePath)); } /** * 复制文件 * * @param srcFile 源文件 * @param destFile 目标文件 * @return {@code true}: 复制成功<br>{@code false}: 复制失败 */ public static boolean copyFile(File srcFile, File destFile) { return copyOrMoveFile(srcFile, destFile, false); } /** * 移动目录 * * @param srcDirPath 源目录路径 * @param destDirPath 目标目录路径 * @return {@code true}: 移动成功<br>{@code false}: 移动失败 */ public static boolean moveDir(String srcDirPath, String destDirPath) { return moveDir(getFileByPath(srcDirPath), getFileByPath(destDirPath)); } /** * 移动目录 * * @param srcDir 源目录 * @param destDir 目标目录 * @return {@code true}: 移动成功<br>{@code false}: 移动失败 */ public static boolean moveDir(File srcDir, File destDir) { return copyOrMoveDir(srcDir, destDir, true); } /** * 移动文件 * * @param srcFilePath 源文件路径 * @param destFilePath 目标文件路径 * @return {@code true}: 移动成功<br>{@code false}: 移动失败 */ public static boolean moveFile(String srcFilePath, String destFilePath) { return moveFile(getFileByPath(srcFilePath), getFileByPath(destFilePath)); } /** * 移动文件 * * @param srcFile 源文件 * @param destFile 目标文件 * @return {@code true}: 移动成功<br>{@code false}: 移动失败 */ public static boolean moveFile(File srcFile, File destFile) { return copyOrMoveFile(srcFile, destFile, true); } /** * 删除目录 * * @param dirPath 目录路径 * @return {@code true}: 删除成功<br>{@code false}: 删除失败 */ public static boolean deleteDir(String dirPath) { return deleteDir(getFileByPath(dirPath)); } /** * 删除目录 * * @param dir 目录 * @return {@code true}: 删除成功<br>{@code false}: 删除失败 */ public static boolean deleteDir(File dir) { if (dir == null) return false; // 目录不存在返回true if (!dir.exists()) return true; // 不是目录返回false if (!dir.isDirectory()) return false; // 现在文件存在且是文件夹 File[] files = dir.listFiles(); if (files != null && files.length != 0) { for (File file : files) { if (file.isFile()) { if (!deleteFile(file)) return false; } else if (file.isDirectory()) { if (!deleteDir(file)) return false; } } } return dir.delete(); } /** * 删除文件 * * @param srcFilePath 文件路径 * @return {@code true}: 删除成功<br>{@code false}: 删除失败 */ public static boolean deleteFile(String srcFilePath) { return deleteFile(getFileByPath(srcFilePath)); } /** * 删除文件 * * @param file 文件 * @return {@code true}: 删除成功<br>{@code false}: 删除失败 */ public static boolean deleteFile(File file) { return file != null && (!file.exists() || file.isFile() && file.delete()); } /** * 删除目录下的所有文件 * * @param dirPath 目录路径 * @return {@code true}: 删除成功<br>{@code false}: 删除失败 */ public static boolean deleteFilesInDir(String dirPath) { return deleteFilesInDir(getFileByPath(dirPath)); } /** * 删除目录下的所有文件 * * @param dir 目录 * @return {@code true}: 删除成功<br>{@code false}: 删除失败 */ public static boolean deleteFilesInDir(File dir) { if (dir == null) return false; // 目录不存在返回true if (!dir.exists()) return true; // 不是目录返回false if (!dir.isDirectory()) return false; // 现在文件存在且是文件夹 File[] files = dir.listFiles(); if (files != null && files.length != 0) { for (File file : files) { if (file.isFile()) { if (!deleteFile(file)) return false; } else if (file.isDirectory()) { if (!deleteDir(file)) return false; } } } return true; } /** * 获取目录下所有文件 * * @param dirPath 目录路径 * @param isRecursive 是否递归进子目录 * @return 文件链表 */ public static List<File> listFilesInDir(String dirPath, boolean isRecursive) { return listFilesInDir(getFileByPath(dirPath), isRecursive); } /** * 获取目录下所有文件 * * @param dir 目录 * @param isRecursive 是否递归进子目录 * @return 文件链表 */ public static List<File> listFilesInDir(File dir, boolean isRecursive) { if (isRecursive) return listFilesInDir(dir); if (dir == null || !isDir(dir)) return null; List<File> list = new ArrayList<>(); Collections.addAll(list, dir.listFiles()); return list; } /** * 获取目录下所有文件包括子目录 * * @param dirPath 目录路径 * @return 文件链表 */ public static List<File> listFilesInDir(String dirPath) { return listFilesInDir(getFileByPath(dirPath)); } /** * 获取目录下所有文件包括子目录 * * @param dir 目录 * @return 文件链表 */ public static List<File> listFilesInDir(File dir) { if (dir == null || !isDir(dir)) return null; List<File> list = new ArrayList<>(); File[] files = dir.listFiles(); if (files != null && files.length != 0) { for (File file : files) { list.add(file); if (file.isDirectory()) { list.addAll(listFilesInDir(file)); } } } return list; } /** * 获取目录下所有后缀名为suffix的文件 * <p>大小写忽略</p> * * @param dirPath 目录路径 * @param suffix 后缀名 * @param isRecursive 是否递归进子目录 * @return 文件链表 */ public static List<File> listFilesInDirWithFilter(String dirPath, String suffix, boolean isRecursive) { return listFilesInDirWithFilter(getFileByPath(dirPath), suffix, isRecursive); } /** * 获取目录下所有后缀名为suffix的文件 * <p>大小写忽略</p> * * @param dir 目录 * @param suffix 后缀名 * @param isRecursive 是否递归进子目录 * @return 文件链表 */ public static List<File> listFilesInDirWithFilter(File dir, String suffix, boolean isRecursive) { if (isRecursive) return listFilesInDirWithFilter(dir, suffix); if (dir == null || !isDir(dir)) return nulljava工具类之实现日期随意跳转