我正在从Oracle数据库&读取blob数据。将它写入文本文件。我的数据库中有两列名为Number&系统。我的桌子上有100个计数。但只有最后一行写在我的文本行中。下面是我试过的代码。
rs =stmt.executeQuery("select Number, system from system");
Blob lob = null;
while (rs.next()) {
String RECID = rs.getString(1);
System.out.println("Number"+ Number);
lob=rs.getBlob("system");
byte[] bdata = lob.getBytes(1, (int) lob.length());
String text = new String(bdata);
System.out.println("text"+ text);
System.out.println("rs value"+ lob);
String test=null;
test=RECID+":"+text;
FileOutputStream fos = new FileOutputStream("C:/DataRead/system.txt");
DataOutputStream dos = new DataOutputStream(fos);
dos.writeBytes(test);
dos.close();
}
}
catch (Exception e) {
e.printStackTrace();
}
}
}
在文本文件中我得到第100条记录,其他99行没有写入。
答案 0 :(得分:0)
您每次在while循环中替换现有文本。
试试这个:
FileOutputStream fos = new FileOutputStream("C:/DataRead/system.txt");
DataOutputStream dos = new DataOutputStream(fos);
while (rs.next()) {
String RECID = rs.getString(1);
System.out.println("Number"+ Number);
lob=rs.getBlob("system");
byte[] bdata = lob.getBytes(1, (int) lob.length());
String text = new String(bdata);
System.out.println("text"+ text);
System.out.println("rs value"+ lob);
String test=null;
test=RECID+":"+text;
dos.writeBytes(test+"\n");
}
dos.close();
答案 1 :(得分:0)
替换代码中的行
FileOutputStream fos = new FileOutputStream("C:/DataRead/system.txt");
使用:
FileOutputStream fos = new FileOutputStream("C:/DataRead/system.txt", true);