java读取mysql的图片_用JAVA写入和读取MYSQL的图片的实例

主要的程序:

package greeds.jdbc.sample;

import greeds.jdbc.util.JDBCUtil;

import java.io.*;

import java.sql.*;

public class MySQLBlobSample {

public static void main(String[] args) throws Exception {

// 写入数据库

/*

*

* Connection conn = null; PreparedStatement pstm = null;

*

* try { String filepath = "D://strahovski-ep201-011.jpg"; File file =

* new File(filepath); FileInputStream fin = new FileInputStream(file);

* conn = JDBCUtil.getConnection();

*

* String sql = "insert into Dish(id,photo) values(?,?)"; pstm =

* conn.prepareStatement(sql); pstm.setInt(1, 3);

* pstm.setBinaryStream(2, fin,(int)file.length());

*

* int r = pstm.executeUpdate(); System.out.println("INSERT"+r+"ROW");

*

* fin.close();

*

*

* } catch (FileNotFoundException e) { e.printStackTrace(); } finally{

* //JDBCUtil.release(null, pstm, conn); }

*/

// 从数据库读取文件

Connection conn = null;

Statement stm = null;

ResultSet rs = null;

try {

conn = JDBCUtil.getConnection();

stm = conn.createStatement();

String sql = "select * from Dish where id=1";

rs = stm.executeQuery(sql);

rs.next();

Blob blob = rs.getBlob("photo");

FileOutputStream out = new FileOutputStream(new File("E:/my.jpg"));

InputStream in = blob.getBinaryStream();

int i;

while ((i = in.read()) != -1) {

out.write(i);

}

in.close();

out.close();

} catch (Exception e) {

e.printStackTrace();

} finally {

JDBCUtil.release(rs, stm, conn);

}

}

}

JDBCUtil.java程序

package greeds.jdbc.util;

import java.sql.*;

import java.io.InputStream;

import java.util.Properties;

public class JDBCUtil {

private static Properties env;

static {

try {

env = new Properties();

InputStream is = JDBCUtil.class

.getResourceAsStream("../config/conn.properties");

env.load(is);

is.close();

} catch (Exception e) {

e.printStackTrace();

throw new ExceptionInInitializerError(e);

}

}

public static final ThreadLocaltl = new ThreadLocal();

public static Connection getConnection() throws Exception {

Connection conn = tl.get();

if (conn == null) {

Class.forName(env.getProperty("driver"));

conn = DriverManager.getConnection(env.getProperty("url"), env

.getProperty("username"), env.getProperty("password"));

tl.set(conn);

}

return conn;

}

public static void release(ResultSet rs, Statement stm, Connection conn) {

if (rs != null)

try {

rs.close();

} catch (Exception e) {

}

if (stm != null)

try {

stm.close();

} catch (Exception e) {

}

if (conn != null)

try {

conn.close();

} catch (Exception e) {

}

}

}

配置文件 conn.properties

driver=com.mysql.jdbc.Driver

url=jdbc:mysql://localhost:3306/greedsdata?useUnicode=true&characterEncoding=utf-8username=caps

password=caps

不能写入成功的主要原因是 红色字体处。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值