String str = Utils.getValue((String)session.getAttribute("str"));
다음은 Utils.getValue 에 대한 간단 설명. 패키지나 클래스, 파라미터 등등의 이야기는 빼고 간단한 내용만..
public static String getValue(String str) throws Exception {
return this.getValue(String str,"");
}
public static String getValue(String str, String def) throws Exception {
if(str==null) return def;
String lVal = str.trim();
return lVal.length()==0 ? def : lValue;
}
'Server Oriented > Java & JSP' 카테고리의 다른 글
jQuery 와 Java 로 XML DOM 다루기 (1) | 2012.01.19 |
---|---|
JSP 에서 request 개체의 getRemoteHost() 메소드는 속도가 상대적으로 느리네요.. (0) | 2011.12.19 |
외부 URL (XML, HTML, JSON, JSONP 등등) 읽어오기, 자바스크립트/Java (0) | 2011.11.01 |
response.sendRedirect() 사용시 유의사항 (0) | 2011.08.23 |
Ajax 로 한글 파라미터를 넘길때.. (3) | 2011.07.07 |