java io之图片存取

一:建表

 

二:获取数据库连接

1:导入mysql的驱动jar包,mysql-connector-java-5.1.8-bin.jar

2:写代码连接数据库,如下:

复制代码
 1 /**
 2  * 
 3 */  4 package com.hlcui.file;  5  6 import java.sql.Connection;  7 import java.sql.DriverManager;  8 import java.sql.SQLException;  9 10 /** 11  * @author Administrator 12  * 13 */ 14 public class DBUtil { 15 // 定义数据库连接参数 16 public static final String DRIVER_CLASS_NAME = "com.mysql.jdbc.Driver"; 17 public static final String URL = "jdbc:mysql://localhost:3306/test"; 18 public static final String USERNAME = "root"; 19 public static final String PASSWORD = "root"; 20 21 // 注册数据库驱动 22 static { 23 try { 24  Class.forName(DRIVER_CLASS_NAME); 25 } catch (ClassNotFoundException e) { 26 System.out.println("注册失败!"); 27  e.printStackTrace(); 28  } 29  } 30 31 // 获取连接 32 public static Connection getConn() throws SQLException { 33 return DriverManager.getConnection(URL, USERNAME, PASSWORD); 34  } 35 36 // 关闭连接 37 public static void closeConn(Connection conn) { 38 if (null != conn) { 39 try { 40  conn.close(); 41 } catch (SQLException e) { 42 System.out.println("关闭连接失败!"); 43  e.printStackTrace(); 44  } 45  } 46  } 47 //测试 48 public static void main(String[] args) throws SQLException { 49 System.out.println(DBUtil.getConn()); 50  } 51 52 }
复制代码

三:封装读取图片的流

复制代码
 1 /**
 2  * 
 3  */  4 package com.hlcui.file;  5  6 import java.io.File;  7 import java.io.FileInputStream;  8 import java.io.FileOutputStream;  9 import java.io.IOException; 10 import java.io.InputStream; 11 12 /** 13  * @author Administrator 14  * 15 */ 16 public class ImageUtil { 17 18 // 读取本地图片获取输入流 19 public static FileInputStream readImage(String path) throws IOException { 20 return new FileInputStream(new File(path)); 21  } 22 23 // 读取表中图片获取输出流 24 public static void readBin2Image(InputStream in, String targetPath) { 25 File file = new File(targetPath); 26 String path = targetPath.substring(0, targetPath.lastIndexOf("/")); 27 if (!file.exists()) { 28 new File(path).mkdir(); 29  } 30 FileOutputStream fos = null; 31 try { 32 fos = new FileOutputStream(file); 33 int len = 0; 34 byte[] buf = new byte[1024]; 35 while ((len = in.read(buf)) != -1) { 36 fos.write(buf, 0, len); 37  } 38  fos.flush(); 39 } catch (Exception e) { 40  e.printStackTrace(); 41 } finally { 42 if (null != fos) { 43 try { 44  fos.close(); 45 } catch (IOException e) { 46  e.printStackTrace(); 47  } 48  } 49  } 50  } 51 }
复制代码

四:实现图片(本地、数据库互相传输)

复制代码
 1 /**
 2  * 
 3  */  4 package com.hlcui.file;  5  6 import java.io.FileInputStream;  7 import java.io.InputStream;  8 import java.sql.Connection;  9 import java.sql.PreparedStatement; 10 import java.sql.ResultSet; 11 import java.sql.SQLException; 12 13 /** 14  * @author Administrator 测试写入数据库以及从数据库中读取 15 */ 16 public class ImageDemo { 17 18 // 将图片插入数据库 19 public static void readImage2DB() { 20 String path = "D:/1.png"; 21 Connection conn = null; 22 PreparedStatement ps = null; 23 FileInputStream in = null; 24 try { 25 in = ImageUtil.readImage(path); 26 conn = DBUtil.getConn(); 27 String sql = "insert into photo (id,name,photo)values(?,?,?)"; 28 ps = conn.prepareStatement(sql); 29 ps.setInt(1, 1); 30 ps.setString(2, "Tom"); 31 ps.setBinaryStream(3, in, in.available()); 32 int count = ps.executeUpdate(); 33 if (count > 0) { 34 System.out.println("插入成功!"); 35 } else { 36 System.out.println("插入失败!"); 37  } 38 } catch (Exception e) { 39  e.printStackTrace(); 40 } finally { 41  DBUtil.closeConn(conn); 42 if (null != ps) { 43 try { 44  ps.close(); 45 } catch (SQLException e) { 46  e.printStackTrace(); 47  } 48  } 49  } 50 51  } 52 53 // 读取数据库中图片 54 public static void readDB2Image() { 55 String targetPath = "D:/image/1.png"; 56 Connection conn = null; 57 PreparedStatement ps = null; 58 ResultSet rs = null; 59 try { 60 conn = DBUtil.getConn(); 61 String sql = "select * from photo where id =?"; 62 ps = conn.prepareStatement(sql); 63 ps.setInt(1, 1); 64 rs = ps.executeQuery(); 65 while (rs.next()) { 66 InputStream in = rs.getBinaryStream("photo"); 67  ImageUtil.readBin2Image(in, targetPath); 68  } 69 } catch (Exception e) { 70  e.printStackTrace(); 71 } finally { 72  DBUtil.closeConn(conn); 73 if (rs != null) { 74 try { 75  rs.close(); 76 } catch (SQLException e) { 77  e.printStackTrace(); 78  } 79  } 80 if (ps != null) { 81 try { 82 ps.close(); 83 } catch (SQLException e) { 84 e.printStackTrace(); 85 } 86 } 87 88 } 89 } 90 //测试 91 public static void main(String[] args) { 92 //readImage2DB(); 93 readDB2Image(); 94 } 95 }
复制代码

转载于:https://www.cnblogs.com/ayuwang/p/6295502.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/417374.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

An error occurred while searching for implementations of method

1:在我安装完scala的插件后,在打开方法的实现类(open implementactions)的时候,抛出这个异常,后来发现这个异常是因为我的scala的插件跟我eclipse版本不兼容导致的。 An error occurred while searching fo…

go操作mysql创建多对多_Django 数据库表多对多的创建和增删改查

前面已经学习了在Django里面如何对单表的操作,同时也学习了1对多(单个外键)的表的操作。接下来,我们看看多对多(多个外键)的关系如何创建和管理。比如说,我们有一个主机表,也有一个应用程序表,一个主机可以对应多个程序…

VMware 报错“Intel VT-x处于禁止状态”

VMware Workstation 10虚拟机安装64位windows server 2008 R2系统时报错“Intel VT-x处于禁止状态”,如下图。 工具/原料 VMware Workstation 10 32位windows server 2008 R2 64位方法/步骤 重启电脑,启动中按F1键进入BIOS。(电脑不同进入BIOS的按键不同…

C# CKEditor、CKFinder集成使用

1.裁剪&#xff08;ckeditor在\_Samples\ckeditor中&#xff09;2.添加引用&#xff1a;CKEditor.NET.dll、CKFinder.dll3.配置CKEditor&#xff1a;ckeditor/config.jsCKEDITOR.editorConfig function (config) {config.skin office2003;};4.使用CKEditor&#xff1a;<% …

tcp/ip四层和osi七层

转载于:https://www.cnblogs.com/mountian-lion/p/6353819.html

Shell 自定义函数

语法&#xff1a; function fname() { 程序段} 例子&#xff1a; #!/bin/bash## 定义函数,分子除以分母&#xff0c;算利润、占有率等## 参数1&#xff1a;分子## 参数2&#xff1a;分母function divfun() {## 参数判断,需要输入两个参数 if [ $# -ne 2 ];thenecho "Enter…

java kafka 集群消费_kafka集群简单生产者消费者实例

项目描述本项目是个简单的kafka集群简单生产者和消费者实例&#xff0c;生产者能生产消息&#xff0c;消费者能消费消息&#xff0c;这里将消费的消息存入了mysql数据库&#xff0c;适合刚kafka刚入门的朋友借鉴使用&#xff0c;里面的zookeeper集群和kafka集群的地址需要修改为…