文件操作工具类Files

简介: public class FilesUtils { private static Logger logger = Logger.getLogger(FilesUtils.class); /** * 判断一个文件或文件夹是否存在,如果没有访问权限,返回...
public class FilesUtils {

    private static Logger logger = Logger.getLogger(FilesUtils.class);

    /**
     * 判断一个文件或文件夹是否存在,如果没有访问权限,返回false
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean exist(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        return Files.exists(fileDir,new LinkOption[] {LinkOption.NOFOLLOW_LINKS });
    }

    /**
     * 判断一个文件或文件夹是否存在,如果没有访问权限,返回false
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean notExist(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        return Files.notExists(fileDir,new LinkOption[] {LinkOption.NOFOLLOW_LINKS });
    }

    /**
     * 判断是否有读的权限
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean isReadable(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        return Files.isReadable(fileDir);
    }

    /**
     * 判断是否有写的权限
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean isWritable(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        return Files.isWritable(fileDir);
    }

    /**
     * 判断是否有执行的权限
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean isExecutable(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        return Files.isExecutable(fileDir);
    }

    /**
     * 判断是否是一个文件
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean isRegularFile(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        return Files.isRegularFile(fileDir);
    }

    /**
     * 判断两个文件是否是同一个文件
     * @time:2017年7月10日
     * @author:MAZHEN
     * @throws IOException 
     * @description
     */
    public static boolean isRegularFile(String path1,String path2) throws IOException{
        Path file1 = FileSystems.getDefault().getPath(path1);
        Path file2 = FileSystems.getDefault().getPath(path2);
        return Files.isSameFile(file1,file2);
    }

    /**
     * 判断是否为隐藏文件
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean isHidden(String path) throws IOException{
        Path fileDir = FileSystems.getDefault().getPath(path);
        return Files.isHidden(fileDir);
    }

    /**
     * 获取系统根目录
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static Iterable<Path> isHidden(){
        return FileSystems.getDefault().getRootDirectories();  
    }

    /**
     * 根据给定的文件夹名创建目录
     * @time:2017年7月9日
     * @author:MAZHEN
     * @description
     */
    public static boolean createDirectory(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        try {
            Files.createDirectory(fileDir);
            return true;
        } catch (IOException e) {
            logger.error("创建文件夹失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 根据指定路径创建文件夹,并设置权限
     * @time:2017年7月9日
     * @author:MAZHEN
     * @description
     */
    public static boolean createDirectory(String path,String permission){
        Path fileDir = FileSystems.getDefault().getPath(path);
        Set<PosixFilePermission> perms = PosixFilePermissions.fromString(permission); 
        FileAttribute<Set<PosixFilePermission>> attr = PosixFilePermissions.asFileAttribute(perms);
        try {
            Files.createDirectory(fileDir, attr);
            return true;
        } catch (IOException e) {
            logger.error("创建文件夹失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 根据指定路径创建多层文件夹
     * @time:2017年7月9日
     * @author:MAZHEN
     * @description
     */
    public static boolean createDirectories(String path){
        Path fileDir = FileSystems.getDefault().getPath(path);
        try {
            Files.createDirectories(fileDir);
            return true;
        } catch (IOException e) {
            logger.error("创建文件夹失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 根据指定路径创建多层文件夹,并设置权限
     * @time:2017年7月9日
     * @author:MAZHEN
     * @description
     */
    public static boolean createDirectories(String path,String permission){
        Path fileDir = FileSystems.getDefault().getPath(path);
        Set<PosixFilePermission> perms = PosixFilePermissions.fromString(permission); 
        FileAttribute<Set<PosixFilePermission>> attr = PosixFilePermissions.asFileAttribute(perms);
        try {
            Files.createDirectories(fileDir, attr);
            return true;
        } catch (IOException e) {
            logger.error("创建文件夹失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 获取指定文件夹下所有的文件
     * @time:2017年7月9日
     * @author:MAZHEN
     * @description
     */
    public static DirectoryStream<Path> listFile(String path) throws IOException{
        Path dir = FileSystems.getDefault().getPath(path);  
        DirectoryStream<Path> ds = Files.newDirectoryStream(dir);
        return ds;
    }

    /**
     * 获取指定文件夹满足正则的所有文件
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static DirectoryStream<Path> listFile(String path,String regular) throws IOException{
        Path dir = FileSystems.getDefault().getPath(path);  
        DirectoryStream<Path> ds = Files.newDirectoryStream(dir,regular);
        return ds;
    }

    /**
     * 创建指定文件
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean createFile(String path){
        Path file = FileSystems.getDefault().getPath(path);
        try {
            Files.createFile(file);
            return true;
        } catch (IOException e) {
            logger.error("创建文件失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 创建指定文件,并设置权限
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean createFile(String path,String permission){
        Path file = FileSystems.getDefault().getPath(path);
        Set<PosixFilePermission> perms = PosixFilePermissions.fromString(permission); 
        FileAttribute<Set<PosixFilePermission>> attr = PosixFilePermissions.asFileAttribute(perms);
        try {
            Files.createFile(file, attr);
            return true;
        } catch (IOException e) {
            logger.error("创建文件夹失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 将数据写入指定文件,默认编码集为UTF-8
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean write(String path,String content){
        return write(path,content,"UTF-8");
    }

    /**
     * 将数据写入指定的文件,指定编码集
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean write(String path,String content,String charset){
        Path file = FileSystems.getDefault().getPath(path);
        try {
            byte[] rf_wiki_byte = content.getBytes(charset); 
            Files.write(file, rf_wiki_byte);
            return true;
        } catch (Exception e) {
            logger.error("写入文件失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 将字节数组写入指定文件
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static boolean write(String path,byte[] content){
        Path file = FileSystems.getDefault().getPath(path);
        try {
            Files.write(file, content);
            return true;
        } catch (Exception e) {
            logger.error("写入文件失败,错误信息:"+e);
            return false;
        }
    }

    /**
     * 读取指定文件中的数据为字节流
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static byte[] readAllBytes(String path) throws IOException{
        Path file = FileSystems.getDefault().getPath(path);
        return Files.readAllBytes(file);
    }

    /**
     * 读取指定文本文件中的所有行,返回为行的list
     * @time:2017年7月10日
     * @author:MAZHEN
     * @throws IOException 
     * @description
     */
    public static List<String> readAllLines(String path) throws IOException{
        return readAllLines(path,"UTF-8");
    }

    /**
     * 读取指定文本文件中的所有行,返回为行的list
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static List<String> readAllLines(String path,String charsetStr) throws IOException{
        Charset charset = Charset.forName(charsetStr);
        Path file = FileSystems.getDefault().getPath(path);
        return Files.readAllLines(file,charset);
    }

    /**
     * 以默认编码集读取指定文本文件中的数据
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static String read(String path) throws IOException{
        return read(path,"UTF-8");
    }

    /**
     * 根据指定的编码集读取文本文件中的数据
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static String read(String path,String charsetStr) throws IOException{
        Charset charset = Charset.forName(charsetStr);
        Path file = FileSystems.getDefault().getPath(path);
        List<String> lines = Files.readAllLines(file, charset);
        if(lines != null && !lines.isEmpty()){
            StringBuffer sb = new StringBuffer();
            for (String line : lines) {
                sb.append(line);
            }
            return sb.toString();
        }
        return null;
    }

    /**
     * 获取默认编码集(UTF-8)的BufferedWriter
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static BufferedWriter newBufferedWriter(String path) throws IOException{
        return newBufferedWriter(path,"UTF-8");
    }

    /**
     * 获取指定编码集的BufferedWriter
     * @time:2017年7月10日
     * @author:MAZHEN
     * @description
     */
    public static BufferedWriter newBufferedWriter(String path,String charsetStr) throws IOException{
        Charset charset = Charset.forName(charsetStr);
        Path file = FileSystems.getDefault().getPath(path);
        return Files.newBufferedWriter(file, charset, StandardOpenOption.APPEND);
    }
}
目录
相关文章
|
3月前
|
Java
File类的基本使用【 File类+IO流知识回顾①】
这篇文章回顾了Java中File类的基本使用,包括创建File对象、获取文件数据信息、判断文件存在与否、创建和删除文件目录,以及遍历文件目录的方法。
File类的基本使用【 File类+IO流知识回顾①】
|
4月前
|
Java API
Java文件处理完全指南:创建、读取、写入和删除文件详细解析
Java的文件处理非常灵活和强大。通过上述代码示例,我们可以清楚地理解在Java中如何高效地进行文件的创建、读取、写入和删除操作。值得注意的是,文件操作时我们常常会用到一些流(Stream)和读写字符的类,在操作完成之后,应当及时关闭这些资源,这可以通过使用try-with-resources语句来自动完成。这种方法不仅代码简洁,还能有效防止资源泄漏。总体而言,熟练掌握Java文件处理对于开发实用、健壮的应用程序至关重要。
395 1
|
7月前
|
Java
【文件操作】Java -操作File对象
【文件操作】Java -操作File对象
68 0
|
7月前
|
安全 Java 开发者
Java一分钟之-文件与目录操作:Path与Files类
【5月更文挑战第13天】Java 7 引入`java.nio.file`包,`Path`和`Files`类提供文件和目录操作。`Path`表示路径,不可变。`Files`包含静态方法,支持创建、删除、读写文件和目录。常见问题包括:忽略异常处理、路径解析错误和权限问题。在使用时,注意异常处理、正确格式化路径和考虑权限,以保证代码稳定和安全。结合具体需求,这些方法将使文件操作更高效。
205 2
|
7月前
|
Java
Java 文件处理完全指南:创建、读取、写入和删除文件详细解析
文件处理简介 文件处理是任何应用程序的重要部分。Java 提供了许多用于创建、读取、更新和删除文件的方法。 Java 文件处理 Java 中的文件处理主要通过 java.io 包中的 File 类完成。该类允许我们处理文件,包括创建、读取、写入和删除文件。
579 1
|
7月前
|
运维 Java Unix
File类和IO流
File类和IO流
70 0
Path接口与Files工具类
Path接口与Files工具类
56 0
|
存储 移动开发 Java
IO流以及File类
IO流以及File类
C#编程-110:文件操作File静态类
C#编程-110:文件操作File静态类
131 0
C#编程-110:文件操作File静态类
Java:Files类读取写入文件
Java:Files类读取写入文件
221 0