PropUtil是一个用来管理properties配置文件的工具类 目前提供的功能如下: 1-1. public static final void loadConfig(String resource, Class cls) 从class path中加载指定名字的配置文件 1-2. public static final void loadConfig(String fileName) 从文件系统中加载指定名字的配置文件 2-1. public static final String getProperty(String key) 从配置文件中读取字符串类型的配置 2-2. public static final String getProperty(String key, String defaultValue) 从配置文件中读取字符串类型的配置 3-1. public static final String getString(String key) 从配置文件中读取字符串类型的配置 3-2. public static final String getString(String key, String defaultValue) 从配置文件中读取字符串类型的配置 4-1. public static final int getInteger(String key) 从配置文件中读取整数类型的配置 4-2. public static final int getInteger(String key, String defaultValue) 从配置文件中读取整数类型的配置 4-3. public static final int getInteger(String key, int defaultValue) 从配置文件中读取整数类型的配置 5-1. public static final long getLong(String key) 从配置文件中读取长整数类型的配置 5-2. public static final long getLong(String key, String defaultValue) 从配置文件中读取长整数类型的配置 5-3. public static final long getLong(String key, long defaultValue) 从配置文件中读取长整数类型的配置 6-1. public static boolean getBoolean(String key) 从配置文件中读取布尔类型的配置 6-2. public static boolean getBoolean(String key, String defaultValue) 从配置文件中读取布尔类型的配置 6-3. public static boolean getBoolean(String key, boolean defaultValue) 从配置文件中读取布尔类型的配置
@author Xie, Jiyun
@version 1.0.0
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.