package com.util;
import java.io.IOException;
import java.io.Reader;
import java.sql.ResultSet;
import java.sql.SQLException;
public class StringUtil {
public static String clobToString(ResultSet rs, String msg)
throws SQLException, IOException {
StringBuffer sb = new StringBuffer();
Reader rd = rs.getCharacterStream(msg);
char[] buffer = new char[1024];
int byteRead;
while ((byteRead = rd.read(buffer, 0, 1024)) != -1) {
sb.append(buffer, 0, byteRead);
}
rd.close();
return sb.toString();
}
}
String을 리턴함.
http://www.okjsp.pe.kr/seq/104320
요즘 대세라 할 수 있는 날짜 표기 입니다
자바파일 에서 properties 파일 경로 설정
그리고 Date 타입 설정후 리턴되는 값을 사용
'JSP > 기본(Oracle)' 카테고리의 다른 글
MVC 모델2 : (Album게시판) (2) | 2012.06.20 |
---|---|
방명록 (0) | 2012.06.20 |
회원관리 (1) | 2012.06.20 |
모델2 : MVC : Model View Controller - DB연동 (0) | 2012.06.20 |
모델2 : MVC : Model View Controlle r- DB연동없이 (0) | 2012.06.20 |