加入收藏 | 设为首页 | 会员中心 | 我要投稿 4S站长网 (https://www.4s3.cn/)- 科技、混合云存储、数据迁移、云上网络、数据计算!
当前位置: 首页 > 数据库 > Oracle > 正文

使用JDBC4.0操作Oracle中BLOB类型的数据方法

发布时间:2020-09-01 20:13:53 所属栏目:Oracle 来源:互联网
导读:这篇文章主要介绍了使用JDBC4.0操作Oracle中BLOB类型数据的方法,我们需要使用ojdbc6.jar包,本文介绍的非常详细,需要的朋友可以参考下

在JDBC4.0推出后,它的从多的特性正在受到广泛地关注。下面通过本文给大家介绍JDBC4.0操作Oracle中BLOB类型的数据的方法。

需要的jar包

使用ojdbc6.jar

在/META-INF/MANIFEST.MF里可以看到Specification-Version: 4.0

建表


将文件写入数据库

/**

  • 将图片文件存入数据库
  • @throws SQLException
  • @throws IOException
    */
    public int writeBlob(String path) throws SQLException,IOException{
    int result = 0;
    String sql = "insert into blobmodel(blobid,image) values(seq_blobmodel_id.nextval,?)";
    //1.创建Blob
    Blob image = DBHelper.getConnection().createBlob();
    //2.将流放入blob
    OutputStream out = image.setBinaryStream(1);
    //3.读取图片,并写入输出流
    FileInputStream fis = new FileInputStream(path);
    byte []buf = new byte[1024];
    int len = 0;
    while((len=fis.read(buf))!=-1){
    out.write(buf,len);
    }
    result = DBHelper.executeUpdate2(sql,new Object[]{image});//自己简单封装了jdbc操作
    fis.close();
    out.close();
    return result;
    }

    将文件从数据库中读出


  • 将数据库中的图片文件读出来
  • @throws SQLException
  • @throws IOException
    */
    public void readBlob() throws SQLException,IOException{
    String sql = "select image from blobmodel where blobid=?";
    DBHelper.getConnection();//
    ResultSet rs = DBHelper.executeQuery(sql,new Object[]{1});
    while(rs.next()){
    Blob image = rs.getBlob(1);
    InputStream is = image.getBinaryStream();
    BufferedInputStream bis = new BufferedInputStream(is);
    String path = "img/"+new Date().getTime()+".jpg";//指定输出的目录为项目下的img文件夹
    BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(path));
    byte []buf = new byte[1024];
    int len = 0;
    while((len=bis.read(buf))!=-1){
    bos.write(buf,len);
    }
    bos.close();
    bis.close();
    }
    }

    以上所述是小编给大家介绍的使用JDBC4.0操作Oracle中BLOB类型的数据的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

(编辑:4S站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读