首页 > 其他 > 详细

获取类路径下文件的绝对路径

时间:2021-07-03 22:41:23      阅读:44      评论:0      收藏:0      [点我收藏+]

获取类路径下文件的绝对路径

在IDEA软件中,src是类的根路径。

技术分享图片

package com.happy.reflection;

public class AboutPath {
    public static void main(String[] args) {
        String path = Thread.currentThread().getContextClassLoader().getResource("test.properties").getPath();

        System.out.println(path);
    }
}

运行结果:

技术分享图片

如果test.properties在com文件夹下,

技术分享图片

则修改相应代码为:

String path = Thread.currentThread().getContextClassLoader().getResource("com/test.properties").getPath();

读取test.properties里面的内容

技术分享图片

package com.happy.reflection;

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.Properties;

public class AboutPath {
    public static void main(String[] args) throws Exception {
        String path = Thread.currentThread().getContextClassLoader().getResource("test.properties").getPath();

        FileReader reader = new FileReader(path);
        Properties pro = new Properties();
        pro.load(reader);
        reader.close();
        //通过key获取value
        String message = pro.getProperty("importantMessage");
        System.out.println(message);
    }
}

运行结果:

技术分享图片

获取类路径下文件的绝对路径

原文:https://www.cnblogs.com/happy-lin/p/14966993.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!