public String clobToString(Object convertData){ if(convertData!=null){ CLOB clobData = (CLOB)convertData; StringBuffer returnStr = new StringBuffer(); try { Reader reader = clobData.getCharacterStream(); char[] buff = new char[1024]; int nchars = 0; while ((nchars = reader.read(buff)) > 0) { returnStr.append(buff, 0, nchars); } }catch (SQLException e) { e.printStackTrace(); }catch (IOException e) { e.printStackTrace(); } return returnStr.toString(); }else{ return ""; } }
반응형
'JAVA' 카테고리의 다른 글
TreeMap 을 이용한 map계열 정렬 (0) | 2015.11.26 |
---|---|
Long 데이터를 int로 변형 하는 메소드 (0) | 2015.08.27 |
POI/jfreeChart 이용한 엑셀파일 만들기 (0) | 2015.08.26 |
common-io 를 사용한 파일관련 class (0) | 2015.08.04 |
joda-time을 이용한 date함수 (0) | 2015.08.04 |