Best way to read entire clob text value.

What is the best way to read clob data into a string variable that will include carriage returns? I tired BufferedReader.readLine, but it terminates each line when it encounters a carriage return. Any advise would help.
[226 byte] By [FAT-BOYa] at [2007-11-26 21:23:25]
# 1
Then use one of the BufferedReader methods that doesn't read a line at a time and throw away line endings. That would be pretty much all of them except for readLine.
DrClapa at 2007-7-10 3:02:45 > top of Java-index,Java Essentials,Java Programming...
# 2
I'll look at the methods and get back with my findings, do you have any suggestions?Thanks.
FAT-BOYa at 2007-7-10 3:02:46 > top of Java-index,Java Essentials,Java Programming...