java读取资源文件(Properties)

Posted 邦☆杠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java读取资源文件(Properties)相关的知识,希望对你有一定的参考价值。

四步:

java代码

//new一个读取配置文件
        Properties properties=new Properties();
        //获取文件路径
        String path=request.getServletContext().getRealPath("/dom.properties");
        //读取文件内容
        properties.load(new FileInputStream(path));
        //获取origin的value
        String origin=properties.getProperty("origin");

配置文件代码

origin=http://localhost:7070, http://localhost:8080, http://localhost:9090

 

 

以上是关于java读取资源文件(Properties)的主要内容,如果未能解决你的问题,请参考以下文章

java的properties资源文件的读取

在java中如何读取properties文件

使用Java原生支持读取资源配置文件

java中读取资源文件的方法

Java IO流 之 ResourceBundle 读取国际化资源文件

struts2对properties资源的处理