Java解析Property文件

Posted liguangsunls

tags:

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

在Java项目中一些配置參数保存在Property文件里,这样能保证不改动原代码直接改动Property文件。

PropertyParser.java

package com.discover.parse;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Properties;

/**
 * @author Administrator
 *
 */
public class PropertyParser {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Properties properties = new Properties();
        String name = PropertyParser.class.getResource("").getPath();
        String path = name + "config.properties";
        File file = new File(path);
        if(file.exists())
        {
            try{
                InputStream fis = new FileInputStream(file);
                properties.load(fis);
                System.out.println(properties.getProperty("ip"));
            fis.close();
            } catch (Exception e) {
                // TODO: handle exception
            }
        }
    }
}

config.properties

ip=127.0.0.1

执行程序,控制台打印出结果

技术分享






以上是关于Java解析Property文件的主要内容,如果未能解决你的问题,请参考以下文章

Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

片段(Java) | 机试题+算法思路+考点+代码解析 2023

Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段

Spring中property-placeholder的使用与解析

[转]Spring中property-placeholder的使用与解析