Posted in 面试题 onOctober 10, 2013
CLOB字段是Oracle用来存储大容量内容的字段类型,CLOB字段可以存储最高4G的容量。
Java读取CLOB和读取普通类型字段有一点不一样,以下代码实现了如何读取CLOB字段:
connection.setAutoCommit(false);
PreparedStatement preparedStatement=connection.prepareStatement(sql);
ResultSet rs=preparedStatement.executeQuery();
Clob clob=rs.getClob(colName);
if(clob!=null)
{
Reader reader=((oracle.sql.CLOB)clob).getCharacterStream();
BufferedReader br=new BufferedReader(reader);
String value=”";
String line=”";
while((line=br.readLine())!=null)
{
value+=line+”\\r\\n“;
}
}
rs.close();
preparedStatement.close();
其中value就是java读取的CLOB字段的值。
Java读取CLOB和读取普通类型字段有一点不一样,以下代码实现了如何读取CLOB字段:
connection.setAutoCommit(false);
PreparedStatement preparedStatement=connection.prepareStatement(sql);
ResultSet rs=preparedStatement.executeQuery();
Clob clob=rs.getClob(colName);
if(clob!=null)
{
Reader reader=((oracle.sql.CLOB)clob).getCharacterStream();
BufferedReader br=new BufferedReader(reader);
String value=”";
String line=”";
while((line=br.readLine())!=null)
{
value+=line+”\\r\\n“;
}
}
rs.close();
preparedStatement.close();
其中value就是java读取的CLOB字段的值。
Java如何读取CLOB字段
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@