码迷,mamicode.com
首页 > 其他好文 > 详细

将Clob对象转换成String对象

时间:2015-04-16 19:55:03      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:clob转string   clob   

/**
	 * 将Clob对象转换成String对象
	 * @param clob
	 * @return
	 * @throws SQLException
	 * @throws IOException
	 */
	public static String ClobToString(Clob clob) throws SQLException, IOException{
		String str="";
		Reader reader=clob.getCharacterStream();//得到流
		BufferedReader bReader=new BufferedReader(reader);
		String s = bReader.readLine();
		StringBuffer strBuffer = new StringBuffer();
		while(s!=null){//执行循环将字符串全部取出附值给StringBuffer由StringBuffer转成String
			strBuffer.append(s);
			s=bReader.readLine();
		}
		str=strBuffer.toString();
		return str;
	}

将Clob对象转换成String对象

标签:clob转string   clob   

原文地址:http://blog.csdn.net/u013474104/article/details/45079323

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!