码迷,mamicode.com
首页 > 其他好文 > 详细

使用System.getProperty("user.dir")获取项目下的文件内容

时间:2020-03-26 01:38:21      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:getconf   buffer   dem   class   exception   cep   tco   dir   trace   

System.getProperty("user.dir")的作用是获取到项目所在的绝对路径,使用这个api就能获取项目下的文件

 

例如我想获取项目下/src/main/resources/config/certificate.properties的内容,可以使用如下代码:

    public static Properties getProperties(String pathInDemo) throws IOException {
        Properties properties = new Properties();

        String path = System.getProperty("user.dir") + "/src/main/resources/" + pathInDemo;
        
        File file = new File(path);

        BufferedReader bufferedReader = null;
        try {
            bufferedReader = new BufferedReader(new FileReader(file));
            properties.load(bufferedReader);
        } catch (IOException e) {
            e.printStackTrace();
        }

        return properties;
    }

    public static void main(String[] args) throws IOException {
        System.out.println("libreoffice.path=" + getConfig("config\\certificate.properties", "libreoffice.path"));
        System.out.println(
                "certificate.image.suffix=" + getConfig("config\\certificate.properties", "certificate.image.suffix"));
    }

 

以这样拼接路径的方式得到项目下指定文件的绝对路径,需要注意的是,System.getProperty("user.dir")获取到的项目路径以项目名称结尾,不带"/"。

 

使用System.getProperty("user.dir")获取项目下的文件内容

标签:getconf   buffer   dem   class   exception   cep   tco   dir   trace   

原文地址:https://www.cnblogs.com/xhj123/p/12571710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!