java 상용 도구 방법 모음 집 - properties Utils 도구 클래스
1760 단어 자바
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Properties;
import org.apache.commons.lang3.StringUtils;
import org.apache.velocity.texen.util.PropertiesUtil;
public class PropertiesUtils {
private static Properties props;
static {
String fileName = "test.properties";
props = new Properties();
try {
props.load(new InputStreamReader(PropertiesUtil.class
.getClassLoader().getResourceAsStream(fileName), "UTF-8"));
} catch (IOException e) {
System.out.println(" ");
}
}
/***
*
* @param key
*
* @return
*/
public static String getProperty(String key) {
String value = props.getProperty(key.trim());
// value , isBlank "", " ", " ", null
if (StringUtils.isBlank(value)) {
return null;
}
return value.trim();
}
/**
*
* @param key
*
* @param defaultValue
* value , defaultValue
* @return
*/
public static String getProperty(String key, String defaultValue) {
String value = props.getProperty(key.trim());
if (StringUtils.isBlank(value)) {
value = defaultValue;
}
return value.trim();
}
public static void main(String[] args){
System.out.println(PropertiesUtils.getProperty("dll.path"));
}
}
메모: comons - lang 가방 과 velocity 가방 에 의존 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.