4

获取文件的绝对路径,读取该文件

一、文件目录打印图

下面的文件目录图,是项目中文件的位置信息;下面的例子是按照这个图来演示的。

.
|-- java
|   |-- ibard
|   |   |-- demo1
|   |   |   `-- DemoTest1.java
|   |   `-- demo2
|   |       `-- DemoTest2.java
`-- resources
    |-- demo0.properties
    `-- ibard
        |-- demo2
        |   `-- demo2.properties
        `-- demo3
            `-- demo3.properties

项目打包发布后的目录结构:(要注意的是,我们操作的文件状态是下面这个目录的情形!)

target
|-- classes
|   |-- ibard
|   |   |-- demo0.properties
|   |   |-- demo1
|   |   |   `-- DemoTest1.java
|   |   `-- demo2
|   |       `-- DemoTest2.java
|   |   |   `-- demo2.properties
|   |   |-- demo3
|   |       `-- demo3.properties

二、properties文件介绍

以下内容引自Wikipedia:

.properties 文件是一种和java相关的文件拓展,用于存储配置信息。每个参数以一对字符串的信息存储,即key-value 对。

属性信息的格式:

可以是:key=valuekey = valuekey:valuekey value

#! 用于注释该行(当其在属性中时,将不起作用),\ 用于转义和拼接多行的value

wikipedia的properties文件模板:

# You are reading the ".properties" entry.
! The exclamation mark can also mark text as comments.
# The key characters =, and : should be written with
# a preceding backslash to ensure that they are properly loaded.
# However, there is no need to precede the value characters =, and : by a backslash.
website = https://en.wikipedia.org/
language = English
# The backslash below tells the application to continue reading
# the value onto the next line.
message = Welcome to \
          Wikipedia!
# Add spaces to the key
key\ with\ spaces = This is the value that could be looked up with the key "key with spaces".
# Unicode
tab : \u0009
# If you want your property to include a backslash, it should be escaped by another backslash
path=c:\\wiki\\templates
# However, some editors will handle this automatically

三、获取文件路径

注意: 这里我们讲的获取文件路径和读取文件,有一个最高级范围的限定的前提。

在java项目和web项目中,其最高级的目录只能是并行的java 目录和resource 目录。

因此,我们只能操作java 中的源代码文件和resource 的资源文件。对于web项目来说,我们是无法通过这里讲的方法来获取webapp 目录下的文件的。

我们想获得的文件路径,无非是两种。一是java类文件的路径(*.java ),二是资源文件的路径(*.properties或其他资源文件)。通常情况下,我们主要是想获取资源文件的路径。

这里我们使用DemoTest2.java 类来获取demo2.propertiesdemo3.properties 这两个文件的路径。

说明: 下面所讲的方法,其定位参照的方法都是借助.class 类文件来展开的(也就是第2个目录结构图),因此其位置都是编译后的文件位置(当然,通常其位置和源代码位置一致)。

我们所获取的文件路径,都是绝对路径(相对于系统而言的全写路径)。比如windows下会是C:/user/ibard/desktop/....,linux下会是/opt/tomcat8/...这样的物理绝对路径。

1、URL <- Concrete.class.getResource(String path)方法

在这里,path可以是相对路径,也可以是绝对路径(绝对路径的path以/ 开头,指向你程序的根目录)。得到的结果是URL 类型。

1.1、path使用相对路径

当使用相对路径时,其参照目录是当前类文件所在的目录。当path传入的值为"" 时,获取的就是当前目录的路径。

// DemoTest2.java文件的部分代码

// 1.DemoTest2.java中获取demo2.properties文件的URL
URL url_1 = DemoTest2.class.getResource("demo2.properties");
// 2.生成File对象
File file_1 = new File(url_1.getFile());
// 3.获取文件的绝对路径值
String filepath_1 = file_1.toPath();
1.2、path使用绝对路径

当使用绝对路径时,必须是以/ 开头,这代表了当前java源代码的根目录。当path传入的值为/ 时,获取的就是java源代码的根目录。

// DemoTest2.java文件的部分代码

// 1.DemoTest2.java获取demo3.properties文件的URL
URL url_2 = DemoTest2.class.getResource("/ibard/demo3/demo3.properties");
File file_2 = new File(url_2.getFile());
String filepath_2 = file_2.toPath();
当要获取的资源文件与当前java类不在同一个包下时,应该使用绝对路径的方式来获取资源文件的绝对路径,进而来生成File对象操作文件。

2、URL <- Concrete.class.getClassLoader().getResource(String path)方法

在这里,通过获取类加载器来获取资源文件的路径。path只能是绝对路径,而且该绝对路径是不以/开头的。其实介绍的第一种方法,其内部源码就是调用这种方法。

// DemoTest2.java文件的部分代码

// 1.DemoTest2.java获取demo2.properties文件的URL
URL url_3 = DemoTest2.class.getClassLoader().getResource("ibard/demo2/demo2.properties");
File file_3 = new File(url_3.getFile());
String filepath_3 = file_3.toPath();

总结

上面介绍的2种方法都是用来获取文件的File对象和绝对路径。而File 对象在后面的资源文件的读取中就会使用到。

四、读取资源文件

更多的时候,我们是要读取资源文件内部的信息。对于.properties 文件(一般是键值对的形式保存信息),在java 中有一个与其对应的类,即Properties 类。通过构造Properties 类,我们可以读取资源的keyvalue

1、 Properties对象读取资源文件

1.1、生成properties 对象

首先,我们需要生成Properties 对象:Properties properties= new Properties();

1.2、获取资源文件的输入流

然后,我们需要得到资源文件的输入流,而得到输入流的方法有两种。

1.2.1、Concrete.class.getResourceAsStream(String path)

path可以是相对路径,也可以是绝对路径。

InputStream in = DemoTest2.class.getResourceAsStream("demo2.properties");
1.2.2、Concrete.class.getClassLoader().getResourceAsStream(String path)

path只能是绝对路径。但是绝对路径却不以/ 开头,和之前相反了

InputStream in = DemoTest2.class.getClassLoader().getResourceAsStream("ibard/demo3/demo3.properties");
1.3、加载输入流,获取值

在得到输入流之后,将输入流加载到Properties 对象,之后就可以获取值了。

// 加载输入流对象
properties.load(in);
String value = properties.getProperty("name");

柒叶
409 声望43 粉丝