writer.println("-- dump: " + sb.toString());
}
private void dumpLob(String fileName, boolean lobCompression) {
OutputStream fileOut = null;
FileStore fileStore = null;
int size = 0;
String n = fileName + (lobCompression ? ".comp" : "") + ".txt";
InputStream in = null;
try {
fileOut = IOUtils.openFileOutputStream(n, false);
fileStore = FileStore.open(null, fileName, "r");
fileStore.init();
in = new BufferedInputStream(new FileStoreInputStream(fileStore, this, lobCompression, false));
byte[] buffer = new byte[Constants.IO_BUFFER_SIZE];
while (true) {
int l = in.read(buffer);
if (l < 0) {