摘要: //oracle.sql.Clob类型转换成String类型 public String ClobToString(Clob clob) { String reString = ""; Reader is = null; try { is = clob.getCharacterStream(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); ... 阅读全文
posted @ 2012-06-28 14:24 冰镇橘子汽水 阅读(19907) 评论(0) 推荐(1)