package apache.poi.extracto;
|
|
import java.io.InputStream;
|
import java.io.UnsupportedEncodingException;
|
import java.util.Properties;
|
|
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.LogFactory;
|
|
public class PropertiesUtil {
|
|
private static Properties prop = null;
|
|
private static Log log = LogFactory.getLog(PropertiesUtil.class);
|
|
private static String CONFIG_FILENAME = "spring/character.properties";
|
|
public PropertiesUtil() {
|
if (prop == null) {
|
loadProperties();
|
}
|
}
|
|
/**
|
* 装载属性文件
|
*/
|
private synchronized static void loadProperties() {
|
try {
|
InputStream is=PropertiesUtil.class.getResourceAsStream("/" + CONFIG_FILENAME);
|
prop = new Properties();
|
prop.load(is);
|
}catch (Exception e) {
|
System.err.println("读取配置文件失败!!!");
|
prop = null;
|
log.error(e.getMessage(), e);
|
}
|
}
|
|
/**
|
* 得到属性值
|
* @param key
|
* @return
|
*/
|
public static String getProperty(String key) {
|
if (prop == null) loadProperties();
|
String value = prop.getProperty(key);
|
if(value ==null) return null;
|
return value.trim();
|
}
|
|
/**
|
* 得到内容包含汉字的属性值
|
* @param key
|
* @return
|
*/
|
public static String getGBKProperty(String key) {
|
String value = getProperty(key);
|
|
try {
|
value = new String(value.getBytes("ISO8859-1"),"GBK");
|
} catch (UnsupportedEncodingException e) {}
|
|
return null==value?null:value.trim();
|
}
|
|
/**
|
* 得到属性值
|
* @param key
|
* @param defaultValue
|
* @return
|
*/
|
public static String getProperty(String key, String defaultValue) {
|
if (prop == null) loadProperties();
|
String value = prop.getProperty(key, defaultValue);
|
return null==value?null:value.trim();
|
}
|
|
/**
|
* 得到内容包含汉字的属性值,如果不存在则使用默认值
|
* @param key
|
* @return
|
*/
|
public static String getGBKProperty(String key, String defaultValue) {
|
try {
|
defaultValue = new String(defaultValue.getBytes("GBK"), "ISO8859-1");
|
String value = getProperty(key, defaultValue);
|
return new String(value.getBytes("ISO8859-1"), "GBK").trim();
|
} catch (UnsupportedEncodingException e) {
|
return null;
|
}
|
}
|
|
public static String getUTFProperty(String key, String defaultValue) {
|
try {
|
defaultValue = new String(defaultValue.getBytes("UTF-8"),"ISO8859-1");
|
String value = getProperty(key, defaultValue);
|
value = new String(value.getBytes("ISO8859-1"), "UTF-8");
|
return null==value?null:value.trim();
|
} catch (UnsupportedEncodingException e) {
|
return null;
|
}
|
}
|
}
|