∟Retrieving CLOB Values with getCharacterStream() Method
This section describes how to retrieve CLOB values with the ResultSet.getCharacterStream() method.
CLOB values can also be retrieved with the getCharacterStream() method on the ResultSet object, which will return a Reader object.
Then you can read the CLOB values from the Reader object with the read() method.
The sample program below shows you how to create Reader objects with the getCharacterStream() method. A utility method is included
to read all characters from a Ready object and save them in a file.
/**
* MySqlClobGetCharacterStream.java
* Copyright (c) 2007 by Dr. Herong Yang. All rights reserved.
*/
import java.io.*;
import java.sql.*;
public class MySqlClobGetCharacterStream {
public static void main(String [] args) {
Connection con = null;
try {
com.mysql.jdbc.jdbc2.optional.MysqlDataSource ds
= new com.mysql.jdbc.jdbc2.optional.MysqlDataSource();
ds.setServerName("localhost");
ds.setPortNumber(3306);
ds.setDatabaseName("HerongDB");
ds.setUser("Herong");
ds.setPassword("TopSecret");
con = ds.getConnection();
// Retrieving CLOB value with getCharacterStream()
Statement sta = con.createStatement();
ResultSet res = sta.executeQuery("SELECT * FROM Article");
int i = 0;
while (res.next() && i<3) {
i++;
System.out.println("Record ID: "+res.getInt("ID"));
System.out.println(" Subject = "+res.getString("Subject"));
Reader bodyOut = res.getCharacterStream("Body");
String fileOut = "ClobOut_"+res.getInt("ID")+".txt";
saveReader(fileOut,bodyOut);
bodyOut.close();
System.out.println(" Body = (Saved in "+fileOut+")");
}
res.close();
sta.close();
con.close();
} catch (Exception e) {
System.err.println("Exception: "+e.getMessage());
e.printStackTrace();
}
}
public static void saveReader(String name, Reader body) {
int c;
try {
Writer f = new FileWriter(name);
while ((c=body.read())>-1) {
f.write(c);
}
f.close();
} catch (Exception e) {
System.err.println("Exception: "+e.getMessage());
e.printStackTrace();
}
}
}
The output looked correct:
C:\>java -cp .;\local\lib\mysql-connector-java-5.0.7-bin.jar
MySqlClobGetCharacterStream
Record ID: 3
Subject = Test on INSERT statement
Body = (Saved in ClobOut_3.txt)
Record ID: 4
Subject = Test of the setString() method
Body = (Saved in ClobOut_4.txt)
Record ID: 8
Subject = Test of setCharacterStream() methods
Body = (Saved in ClobOut_8.txt)
I checked file ClobOut_8.txt. The CLOB value, the MySqlClobSetCharacterStream.java, program was corrected
saved.