首先是資料庫建立要準備的:
我們要把放置二進位欄位設定為Blob類型,根據檔案的大小選擇合適的Blob類型,一下是各個Blob類型所能容納二進位檔案的大小
MySQL的四種BLOB類型
類型 大小(單位:位元組)
TinyBlob 最大 255
Blob 最大 65K
MediumBlob 最大 16M
LongBlob 最大 4G
一下是具體作業碼:
複製代碼 代碼如下:/**
*
* 把二進位檔案(該二進位檔案可以是本地硬碟路徑,也可以是一個網路路徑)存入資料庫
* create date:2009-5-13 author:Administrator
*
* @param file
* 可以是本地檔案也可以是網路檔案
* @param conn
*/
public void saveBinary(String file, Connection conn) {
// 注意二進位檔案寫入資料庫時所用到的類,以及類封裝轉換過程
File f = null;
if (file.toLowerCase().contains("http:"))
f = DownLoadWithUrl.downLoadFile(file);
else
f = new File(file);
if (f != null) {
try {
InputStream is = new FileInputStream(f);
PreparedStatement ps = conn
.prepareStatement("insert into bankVoice(name,text) values (?,?)");
ps.setString(1, file);
int i = is.available();
ps.setBinaryStream(2, is, is.available());
ps.executeUpdate();
System.out.println("二進位檔案插入成功");
ps.clearParameters();
ps.close();
is.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("二進位檔案插入時出現異常");
}
}
}
注意在操作時候會出現以下異常,那麼我們只需做一下設定:以我本地為例:進入D:\MySql5.0\mysql-5.0.51b-win32 目錄,有以下檔案可以看到:my-large.ini、my-small.ini、my-medium.ini、my-huge.ini
我們把只需把mysql服務現在載入的ini檔案中的配置項:max_allowed_packet 改為 16M
即是:max_allowed_packet = 16M 預設的是1M我們改為16M,然後重啟mysql伺服器,這樣就不會出現下面的異常了。 複製代碼 代碼如下:com.mysql.jdbc.PacketTooBigException: Packet for query is too large (1048587 > 1047552). You can change this value on the server by setting the max_allowed_packet' variable.
at com.mysql.jdbc.MysqlIO.send(MysqlIO.java:2632)
at com.mysql.jdbc.MysqlIO.send(MysqlIO.java:2618)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1551)
at com.mysql.jdbc.ServerPreparedStatement.storeStream(ServerPreparedStatement.java:2180)
at com.mysql.jdbc.ServerPreparedStatement.serverLongData(ServerPreparedStatement.java:1199)
at com.mysql.jdbc.ServerPreparedStatement.serverExecute(ServerPreparedStatement.java:1004)
at com.mysql.jdbc.ServerPreparedStatement.executeInternal(ServerPreparedStatement.java:670)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1159)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1076)
at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1061)
at SaveBinaryToDB.SaveBinaryToDB.saveBinary(SaveBinaryToDB.java:33)
at SaveBinaryToDB.SaveBinaryToDB.main(SaveBinaryToDB.java:17)
/**
* 從資料庫中讀取二進位檔案 create date:2009-5-13 author:Administrator
*
* @param file
* @param conn
*/
public void getBinary(String file, Connection conn) {
// 注意二進位檔案從資料庫中讀取時所用到的類,以及類的封裝轉換過程
try {
PreparedStatement ps = conn
.prepareStatement("select text from bankVoice where name=?");
ps.setString(1, file);
Blob blob = null;
ResultSet rs = ps.executeQuery();
if (rs.next()) {
blob = (Blob) rs.getBlob("text");
}
FileOutputStream fos = new FileOutputStream("D:\\test1.mp3");
fos.write(blob.getBytes(1, (int) blob.length()));
System.out.println("二進位檔案獲得成功");
ps.clearParameters();
ps.close();
fos.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("二進位檔案讀取時出現異常");
}
}
package SaveBinaryToDB; 複製代碼 代碼如下:/**
* 本程式的功能實現網路下載
* 把指定url的檔案下載到本地硬碟
*
*/
import java.io.*;
import java.net.*;
/**
* @todo 將網上擷取的映像,mp3等檔案儲存體到本地
*
* @version 1.0
*/
public class DownLoadWithUrl {
public static File downLoadFile(String fromUrl) {
URL url;
File file = null;
try {
// url = new
// URL("http://count.koubei.com/showphone/showphone.php?f=jpg&w=96&h=10&bc=255,255,255&fc=0,0,0&fs=10&fn=arial&phone=NzMwNzIyNTE1%236aWCXtTNZYkxASrj");
url = new URL(fromUrl);
URLConnection uc = url.openConnection();
InputStream is = uc.getInputStream();
// 根據下載檔案類型的不同,進行相應的檔案命名
file = new File("D:\\forever.mp3");
FileOutputStream out = new FileOutputStream(file);
/*
* 該注釋內的也是一種寫入檔案的方法,不過通常下載mp3或者比mp3更小圖片
* 等這些檔案用這種帶緩衝的方法寫檔案比較慢,所以說小檔案下載通常用下面 的寫檔案方法就可以了 // byte[] b = new
* byte[102400*3]; // int size = 0; // // while ((size = is.read(b)) !=
* -1) { // out.write(b, 1, size); // // }
*/
int i = 0;
while ((i = is.read()) != -1) {
out.write(i);
}
out.flush();
is.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return file;
}
/**
* 刪除本地磁碟指定路徑的檔案 create date:2009-5-13 author:Administrator
*
* @param file
*/
public static void delFile(String file) {
File f = new File(file);
if (f.exists())
f.delete();
System.out.println(file + "已經被刪除");
}
public static void main(String[] args) {
// delFile("D:\\forever.mp3");
downLoadFile("");
}
}