【56】java本地文件File类详解

1.java类的介绍

public class File
extends Object
implements Serializable, Comparable<File>
文件和目录路径名的抽象表示形式。

File既可以表示文件也可以表示目录。

用户界面和操作系统使用与系统相关的路径名字符串 来命名文件和目录。此类呈现分层路径名的一个抽象的、与系统无关的视图。

2.构造方法

File(File parent, String child)

根据 parent 抽象路径名和 child 路径名字符串创建一个新 File 实例。

File(String pathname)

通过将给定路径名字符串转换为抽象路径名来创建一个新 File 实例。

File(String parent, String child)

根据 parent 路径名字符串和 child 路径名字符串创建一个新 File 实例。

File(URI uri)

通过将给定的 file: URI 转换为一个抽象路径名来创建一个新的 File 实例。

代码

package com.qunar.bean;

import java.io.File;
import java.net.URISyntaxException;

public class FileDemo {

    public static void main(String[] args) throws URISyntaxException {
        String pathname = "E:\\Recommended system";
        // File(String pathname)
        File file1 =new File(pathname);

        // File(String parent,String child)
        File file2 =new File(pathname,"train_data.txt");

        // File(File parent,String child)
        File file3 = new File(file1, "train_data.txt");

        // File(URI uri)
        // File file4 =new File(new URI(""));

        // separator 跨平台分隔符
        File file4 =new File("E:"+File.separator+"Recommended system");

        System.out.println(file1);
        System.out.println(file2);
        System.out.println(file3);
        System.out.println(file4);
    }
}

运行结果:

E:\Recommended system

E:\Recommended system\train_data.txt

E:\Recommended system\train_data.txt

E:\Recommended system

3.创建与删除方法

代码实例

ublic class FileDemo {

    public static void main(String[] args) throws URISyntaxException {
        String pathname = "D:\\Recommended system.txt";
        // 创建文件实例
        File file = new File(pathname);

        try {
            // 如果文件存在返回false,否则返回true并且创建文件
            if(file.createNewFile()){
                System.out.println("创建文件["+pathname+"]");
            }//if
            else{
                System.out.println("文件["+pathname+"]已存在");
            }//else
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
public class FileDemo {

    public static void main(String[] args) {
        String pathname = "D:\\Recommended system.txt";
        // 创建文件实例
        File file = new File(pathname);

        //如果文件存在返回true并且删除文件,否则返回false
        if(file.delete()){
            System.out.println("删除文件["+pathname+"]");
        }//if
        else{
            System.out.println("文件["+pathname+"]不存在");
        }//else
    }
}
public class FileDemo {

    public static void main(String[] args) {
        String pathname = "D:\\Recommended system";
        String pathname2 = "D:\\Recommended system2\\Paper\\News";
        // 创建文件实例
        File file = new File(pathname);
        File file2 = new File(pathname2);

        //如果目录不存在返回true并且创建目录,否则返回false
        if(file.mkdir()){
            System.out.println("创建目录["+pathname+"]");
        }//if
        else{
            System.out.println("目录["+pathname+"]已存在");
        }//else

        //如果多级目录不存在返回true并且创建多级目录,否则返回false
        if(file2.mkdirs()){
            System.out.println("创建多级目录["+pathname2+"]");
        }//if
        else{
            System.out.println("多级目录["+pathname2+"]已存在");
        }//else
    }
}

4.判断方法

代码实例

public class FileDemo {

    public static void main(String[] args) {
        String pathname = "D:\\Recommended system\\train_data.txt";
        // 创建文件实例
        File file = new File(pathname);

        // 判断文件是否可执行
        if(file.canExecute()){
            System.out.println("文件["+pathname+"]可执行");
        }//if
        else{
            System.out.println("文件["+pathname+"]不可执行");
        }//else

        // 判断文件是否可读
        if(file.canRead()){
            System.out.println("文件["+pathname+"]可读");
        }//if
        else{
            System.out.println("文件["+pathname+"]不可读");
        }//else

        // 判断文件是否可写
        if(file.canWrite()){
            System.out.println("文件["+pathname+"]可写");
        }//if
        else{
            System.out.println("文件["+pathname+"]不可写");
        }//else

        // 判断文件是否存在
        if(file.exists()){
            System.out.println("文件["+pathname+"]存在");
        }//if
        else{
            System.out.println("文件["+pathname+"]不存在");
        }//else

        // 判断文件是否是目录
        if(file.isDirectory()){
            System.out.println("文件["+pathname+"]是目录文件");
        }//if
        else{
            System.out.println("文件["+pathname+"]不是目录文件");
        }//else

        // 判断是否是一个绝对路径
        if(file.isAbsolute()){
            System.out.println("["+pathname+"]是绝对路径");
        }//if
        else{
            System.out.println("["+pathname+"]不是绝对路径");
        }//else
    }
}

5.获取方法

代码实例

public class FileDemo {

    public static void main(String[] args) {
        String pathname = "E:\\Recommended system";
        // 创建文件实例
        File file = new File(pathname);

        // 返回文件或者目录的名称
        System.out.println("GetName->"+file.getName());
        // 返回路径
        System.out.println("GetPath->"+file.getPath());
        // 返回文件长度
        System.out.println("Length->"+file.length());

        // 返回给定路径下的文件和目录字符串数组
        String[] files = file.list();
        for (String name : files) {
            System.out.println("名称:"+name);
        }//for

        File[] files2 = file.listFiles();
        for (File file2 : files2) {
            if(file2.isFile()){
                System.out.println("文件名称:"+file2.getName());
            }//if
            else if(file2.isDirectory()){
                System.out.println("目录名称:"+file2.getName());
            }//else
        }//for

        // 列出可用的系统盘
        File[] files3 = file.listRoots();
        for (File file3 : files3) {
            System.out.println("文件名称:"+file3.getPath());
        }
    }
}

运行结果:

GetName->Recommended system
GetPath->E:\Recommended system
Length->16384
名称:540135b87c6d0.csv
名称:5403c3df31780.doc
名称:baidu-salon-38-1.mp3
名称:baidu-salon-38-1.pdf
名称:TextAnalysis.rar
名称:train_data.txt
名称:中文停用词表(比较全面_有1208个停用词).txt
名称:主题提起
名称:协同过滤
名称:天猫推荐算法.mp3
名称:天猫推荐算法.pdf
名称:推荐系统入门.zip
名称:推荐系统实战经验与效果提升之道.pdf

文件名称:540135b87c6d0.csv
文件名称:5403c3df31780.doc
文件名称:baidu-salon-38-1.mp3
文件名称:baidu-salon-38-1.pdf
文件名称:TextAnalysis.rar
文件名称:train_data.txt
文件名称:中文停用词表(比较全面_有1208个停用词).txt
目录名称:主题提起
目录名称:协同过滤
文件名称:天猫推荐算法.mp3
文件名称:天猫推荐算法.pdf
文件名称:推荐系统入门.zip
文件名称:推荐系统实战经验与效果提升之道.pdf

文件名称:C:文件名称:D:文件名称:E:文件名称:F:文件名称:G:文件名称:H:\

6.文件过滤例子:

public class FileDemo {

    public static void main(String[] args) {
        String pathname = "E:\\Recommended system";
        // 创建文件实例
        File file = new File(pathname);

        // 文件过滤
        File[] files = file.listFiles(new FilenameFilter() {
            @Override
            public boolean accept(File file, String filename) {
                return filename.endsWith(".mp3");
            }
        });

        // 打印输出
        for (File file2 : files) {
            System.out.println("名称:"+file2.getName());
        }//for
    }
}

运行结果:

名称:baidu-salon-38-1.mp3

名称:天猫推荐算法.mp3

名称:百度推荐实践.mp3

7.列出文件夹下的全部文件:

public class FileDemo {

    public static void ListAllFile(File file){
        if(!file.exists()){
            throw new IllegalArgumentException("目录["+file+"]不存在");
        }//if
        if(!file.isDirectory()){
            throw new IllegalArgumentException("["+file+"]不是目录");
        }//if
        // 列出指定路径下的全部文件或目录
        File[] files = file.listFiles();
        for (File fileName : files) {
            // 判断是否是目录 如果是递归
            if(fileName.isDirectory()){
                ListAllFile(fileName);
            }//if
            // 否则打印输出
            else{
                System.out.println(fileName.getPath());
            }//else
        }//for
    }

    public static void main(String[] args) {
        String pathname = "E:\\Recommended system";
        // 创建文件实例
        File file = new File(pathname);
        // 列出全部文件或目录
        ListAllFile(file);

运行结果:

E:\Recommended system\540135b87c6d0.csv

E:\Recommended system\5403c3df31780.doc

E:\Recommended system\baidu-salon-38-1.mp3

E:\Recommended system\baidu-salon-38-1.pdf

E:\Recommended system\TextAnalysis.rar

E:\Recommended system\train_data.txt

E:\Recommended system\中文停用词表(比较全面_有1208个停用词).txt

E:\Recommended system\主题提起\中文新闻关键事件的主题句识别.pdf

E:\Recommended system\主题提起\加入时间因素的个性化信息过滤技术.pdf

E:\Recommended system\主题提起\动态新闻主题信息推荐系统设计.pdf

E:\Recommended system\协同过滤\PatternRecognitionAndMachineLearning.pdf

E:\Recommended system\协同过滤\一种改进的Item-based协同过滤推荐算法.pdf

E:\Recommended system\协同过滤\一种电影个性化推荐系统的研究与实现.pdf

E:\Recommended system\协同过滤\个性化搜索引擎中用户协作推荐算法的研究.pdf

E:\Recommended system\协同过滤\个性化新闻推荐引擎中新闻分组聚类技术的研究与实现.caj

E:\Recommended system\协同过滤\协同过滤技术在个性化推荐中的运用.pdf

E:\Recommended system\协同过滤\基于协同过滤的个性化新闻推荐系统的研究与实现.caj

E:\Recommended system\协同过滤\基于矩阵分解的协同过滤算法.pdf

….

E:\Recommended system\天猫推荐算法.mp3

E:\Recommended system\天猫推荐算法.pdf

E:\Recommended system\推荐系统入门.zip

8.getPath、getAbsolutePath和getCanonicalPath的区别

File file = new File("./build.gradle");
System.out.println(file.getPath());
System.out.println(file.getAbsolutePath());
try {
    System.out.println(file.getCanonicalPath());
} catch (IOException e) {
    e.printStackTrace();
}

结果如下

./build.gradle

/Users/wuchen/IdeaProjects/Artifact/./build.gradle

/Users/wuchen/IdeaProjects/Artifact/build.gradle

9.file.delete()

文件删除失败的几个原因:

文件或文件夹不存在

文件夹内不为空

没有权限

文件正在被以独占的方式打开

File file = new File("Exposure.java");
try {
  FileOutputStream fileOutputStream = new FileOutputStream(file);
} catch (IOException e) {
  e.printStackTrace();
}
System.out.println(file.delete());

我的微信二维码如下,欢重点内容迎交流讨论

欢迎关注《IT面试题汇总》微信订阅号。每天推送经典面试题和面试心得技巧,都是干货!

微信订阅号二维码如下:

参考

http://blog.csdn.net/sunnyyoona/article/details/50386761

http://www.jianshu.com/p/bfbccae7ce78

http://www.itzhai.com/java-based-notebook-java-io-and-file-class-describes-the-basic-introduction-and-use-of.html

时间: 2024-09-29 16:46:11

【56】java本地文件File类详解的相关文章

FileUtils.java 本地 文件操作工具类

package Http; import java.io.File;import java.io.FileOutputStream;import java.io.FileWriter;import java.io.IOException; /** * * 本地文件操作工具类 *保存文本 *保存图片 * Created by lxj-pc on 2017/6/27. */public class FileUtils { public static void saveText(String cont

javaIO—File类详解

先列出APi,然后讲解File类的基本知识及实例. java.io 类 File java.lang.Object java.io.File 所有已实现的接口: Serializable, Comparable<File> public class File extends Object implements Serializable, Comparable<File> 文件和目录路径名的抽象表示形式. 用户界面和操作系统使用与系统相关的路径名字符串来命名文件和目录.此类呈现分层路

jdk1.8 java.util.stream.Stream类 详解

为什么需要 Stream Stream 作为 Java 8 的一大亮点,它与 java.io 包里的 InputStream 和 OutputStream 是完全不同的概念.它也不同于 StAX 对 XML 解析的 Stream,也不是 Amazon Kinesis 对大数据实时处理的 Stream.Java 8 中的 Stream 是对集合(Collection)对象功能的增强,它专注于对集合对象进行各种非常便利.高效的聚合操作(aggregate operation),或者大批量数据操作 (

JavaIO(01)File类详解

File类 file类中的主要方法和变量 常量: 表示路径的分割符:(windows) 作用:根据java可移植性的特点,编写路径一定要符合本地操作系统要求的分割符: public static final String separator public static final String pathSeparator package cn.itcast; import java.io.File; public class DemoFile02 { public static void mai

File类详解

一.File类: File类时io包中唯一代表磁盘文件本身的对象.File类定义了一些与平台无关的方法来操作文件,可以通过调用File类中的方法,实现创建.删除.重命名文件等. File类的对象主要用来获取文本的一些信息,如文件所在的目录.文件的长度.文件的读取权限等. 1.文件的创建:目录(文件夹)的创建 File(String pathname):在此File的构造方法中填入一个String类型的路径名:实例如下: String s="d:\\aaa.txt"; File f=ne

08、File类详解

一.File类 1.1.File解析 File类可以用来将文件或文件夹封装成对象同时也可以作为参数传递给流的构造函数,方便对文件的读写操作. (1)File f1 = new File("a.txt");//将a.txt封装成file对象.可以将已有的和未出现的文件或者文件夹封装成对象. (2)File f2 = new File("c:\\abc","b.txt");//将目录和文件分成两个参数进行传递. (3)File d = new Fil

java中File类详解

构造函数 代码如下: public class FileDemo {     public static void main(String[] args){         //构造函数File(String pathname)         File f1 =new File("c:\\abc\\1.txt");         //File(String parent,String child)         File f2 =new File("c:\\abc&qu

Java基础(55):Exception类详解(转)

Java中的异常 Exception java.lang.Exception类是Java中所有异常的直接或间接父类.即Exception类是所有异常的根类. 比如程序: 1 public class ExceptionTest 2 { 3 public static void main(String[] args) 4 { 5 int a = 3; 6 int b = 0; 7 int c = a / b; 8 System.out.println(c); 9 } 10 } 编译通过,执行时结果

Java中的Properties类详解

1.Properties类是什么? Properties(Java.util.Properties),该类主要用于读取Java的配置文件,不同的编程语言有自己所支持的配置文件,配置文件中很多变量是经常改变的,为了方便用户的配置,能让用户够脱离程序本身去修改相关的变量设置.就像在Java中,其配置文件常为.properties文件,是以键值对的形式进行参数配置的. 2.常用的方法 getProperty(String key)   在此属性列表中搜索具有指定键的属性.如果在此属性列表中找不到该键,