CLOB转化成String类型

   CLOB clob = (CLOB) map.get("fileids");
   String res = null;
   try {
    	 res = (clob == null ? null : clob.getSubString(1, (int)clob.length()));
    } catch (SQLException e) {
    	e.printStackTrace();
    }				
    map.put("fileids", res);

map中拿到的是一个Object为泛型,本身为CLOB类型的Oracle数据,本方法将CLOB类型的数据转化成String。

你可能感兴趣的:(CLOB转化成String类型)