簡體   English   中英

使用Blob數據寫入文件

[英]File writing with blob data

我正在從Oracle數據庫讀取blob數據並將其寫入文本文件。 我的數據庫中有兩列稱為Number&system。 我的桌子上有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行未寫入。

您每次在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();

替換代碼中的行

FileOutputStream fos = new FileOutputStream("C:/DataRead/system.txt");

帶有:

FileOutputStream fos = new FileOutputStream("C:/DataRead/system.txt", true);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM