Clob.getSubString();public String getSubString(long pos,
                           int length)
                    throws SQLExceptionReturns a copy of the specified substring in the CLOB value designated by this Clob object. The substring begins at position pos and has up to length consecutive characters.
Parameters:
pos - the first character of the substring to be extracted. The first character is at position 1.
length - the number of consecutive characters to be copied
Returns:
a String that is the specified substring in the CLOB value designated by this Clob object
Throws:
SQLException - if there is an error accessing the CLOB
Since: 
1.2 
See Also: 
What Is in the JDBC 2.0 API