欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java+mysql本地图片上传数据库及下载示例

程序员文章站 2024-03-07 15:23:39
做一个将本地图片上传到mysql数据库的小实例,顺便也下载下来到桌面检测是否上传成功。 在写代码之前得先在数据库中建立image表,用来存储图片。 create...

做一个将本地图片上传到mysql数据库的小实例,顺便也下载下来到桌面检测是否上传成功。

在写代码之前得先在数据库中建立image表,用来存储图片。

create table image 
(id int primary key auto_increment , 
 name varchar(30) comment '名称', 
 content mediumblob comment '图片');

下面直接上代码:

package jdbc_imagetest;

import java.io.*;
import java.sql.*;
/**
 * 将本地文件的图片传到数据库的test的image表中并下载到本机桌面
 */
public class test1 {

  private static string url="jdbc:mysql://localhost:3306/test";
  private static string user="root";
  private static string password="123456";
  private static connection con;

  public static void main(string[] args) throws exception {
    class.forname("com.mysql.jdbc.driver");
    con=drivermanager.getconnection(url,user,password);
    shangchuan();
    xiazai();    
  }
  //添加图片到数据库test4的file表
  public static void shangchuan() throws exception{
    string sql="insert into image(name,content) values(?,?)";
    preparedstatement ptmt=con.preparestatement(sql);
    ptmt.setstring(1, "美女.jpg");
    inputstream is=null;
    is=new fileinputstream("d:\\pictures\\3.jpg");
    ptmt.setbinarystream(2, is,is.available());
    //方法说明:preparedstatement.setbinarystream(int parameterindex, inputstream x, int length)
    ptmt.execute();
    system.out.println("图片添加成功!");

  }
  //从数据库中把图片下载至桌面
  public static void xiazai() throws exception{
    string sql="select content from image where id=3";//在我这里3.jpg是第三张图片
    statement stmt=con.createstatement();
    resultset rs=stmt.executequery(sql);//将查询结果给rs
    if(rs.next()){
      inputstream is=rs.getbinarystream("fcontent");
      //.getbinarystream():a java input stream that delivers the database column value as a stream of uninterpreted bytes
      fileoutputstream fos=new fileoutputstream("c:\\users\\desktop\\美女.jpg");
      byte[] buffer=new byte[1024];
      int len=0;
      while((len=is.read(buffer))!=-1){
        fos.write(buffer,0,len);//将数据库的图片写出
      }
      system.out.println("下载成功!已下载至桌面,请查看");
    }else{
      system.out.println("图片不存在!");
    }
    con.close();
  }


}

测试成功

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。