Java讀取properties配置文件工具類


 

1.   PropertyUtils.java

package javax.utils;

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

/**
 * 讀取properties配置文件工具類
 * 
 * @author Logan
 *
 */
public class PropertyUtils {
    private static Properties property = new Properties();
    static {
        try (
                InputStream in = PropertyUtils.class.getResourceAsStream("/param.properties");
        ) {
            property.load(in);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static String get(String key) {
        return property.getProperty(key);
    }

    public static Integer getInteger(String key) {
        String value = get(key);
        return null == value ? null : Integer.valueOf(value);
    }

    public static Boolean getBoolean(String key) {
        String value = get(key);
        return null == value ? null : Boolean.valueOf(value);
    }

    public static void main(String[] args) {
        System.out.println(PropertyUtils.get("user"));
        System.out.println(PropertyUtils.getInteger("age"));
        System.out.println(PropertyUtils.getBoolean("flag"));
    }

}

 

 

2.   param.properties

user=Logen
age=16
flag=true

 

 

.


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM