Java中Clob类型转String

 public static String oracleClob2Str(Clob clob) throws Exception { 
        return (clob != null ? clob.getSubString(1, (int) clob.length()) : null); 
 }

原文地址:https://www.cnblogs.com/guijl/p/2814296.html