服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - JAVA教程 - javaweb学习总结——使用JDBC处理MySQL大数据

javaweb学习总结——使用JDBC处理MySQL大数据

2020-06-29 11:22孤傲苍狼 JAVA教程

本篇文章主要介绍了JDBC处理MySQL大数据,有时是需要用程序把大文本或二进制数据直接保存到数据库中进行储存的,非常具有实用价值,需要的朋友可以参考下。

BLOB (binary large object),二进制大对象,是一个可以存储二进制文件的容器。在计算机中,BLOB常常是数据库中用来存储二进制文件的字段类型,BLOB是一个大文件,典型的BLOB是一张图片或一个声音文件,由于它们的尺寸,必须使用特殊的方式来处理(例如:上传、下载或者存放到一个数据库)。

一、基本概念

在实际开发中,有时是需要用程序把大文本或二进制数据直接保存到数据库中进行储存的。

MySQL而言只有blob,而没有clob,mysql存储大文本采用的是Text,Text和blob分别又分为:

TINYTEXT、TEXT、MEDIUMTEXT和LONGTEXT

TINYBLOB、BLOB、MEDIUMBLOB和LONGBLOB

二、搭建测试环境

2.1、搭建的测试项目架构

如图:

javaweb学习总结——使用JDBC处理MySQL大数据

2.2、编写db.properties配置文件

?
1
2
3
4
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/jdbcStudy
username=root
password=XDP

2.3、编写JdbcUtils工具类

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package me.gacl.utils;
 
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
 
public class JdbcUtils {
 
  private static String driver = null;
  private static String url = null;
  private static String username = null;
  private static String password = null;
  
  static{
    try{
      //读取db.properties文件中的数据库连接信息
      InputStream in = JdbcUtils.class.getClassLoader().getResourceAsStream("db.properties");
      Properties prop = new Properties();
      prop.load(in);
      
      //获取数据库连接驱动
      driver = prop.getProperty("driver");
      //获取数据库连接URL地址
      url = prop.getProperty("url");
      //获取数据库连接用户名
      username = prop.getProperty("username");
      //获取数据库连接密码
      password = prop.getProperty("password");
      
      //加载数据库驱动
      Class.forName(driver);
      
    }catch (Exception e) {
      throw new ExceptionInInitializerError(e);
    }
  }
  
  /**
  * @Method: getConnection
  * @Description: 获取数据库连接对象
  * @Anthor:孤傲苍狼
  *
  * @return Connection数据库连接对象
  * @throws SQLException
  */
  public static Connection getConnection() throws SQLException{
    return DriverManager.getConnection(url, username,password);
  }
  
  /**
  * @Method: release
  * @Description: 释放资源,
  *   要释放的资源包括Connection数据库连接对象,负责执行SQL命令的Statement对象,存储查询结果的ResultSet对象
  * @Anthor:孤傲苍狼
  *
  * @param conn
  * @param st
  * @param rs
  */
  public static void release(Connection conn,Statement st,ResultSet rs){
    if(rs!=null){
      try{
        //关闭存储查询结果的ResultSet对象
        rs.close();
      }catch (Exception e) {
        e.printStackTrace();
      }
      rs = null;
    }
    if(st!=null){
      try{
        //关闭负责执行SQL命令的Statement对象
        st.close();
      }catch (Exception e) {
        e.printStackTrace();
      }
    }
    
    if(conn!=null){
      try{
        //关闭Connection数据库连接对象
        conn.close();
      }catch (Exception e) {
        e.printStackTrace();
      }
    }
  }
}

三、使用JDBC处理MySQL的大文本

对于MySQL中的Text类型,可调用如下方法设置

?
1
PreparedStatement.setCharacterStream(index, reader, length);//注意length长度须设置,并且设置为int型

对MySQL中的Text类型,可调用如下方法获取

?
1
reader = resultSet. getCharacterStream(String columnLabel);2 string s = resultSet.getString(String columnLabel);

3.1、 测试范例

1、编写SQL测试脚本

?
1
2
3
4
5
6
7
create database jdbcstudy;
use jdbcstudy;
create table testclob
(
     id int primary key auto_increment,
     resume text
);

2、编写测试代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package me.gacl.demo;
 
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.Reader;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import me.gacl.utils.JdbcUtils;
import org.junit.Test;
 
/**
* @ClassName: JdbcOperaClob
* @Description: 使用JDBC操作MySQL的大文本
* @author: 孤傲苍狼
* @date: 2014-9-19 下午10:10:04
*
*/
public class JdbcOperaClob {
 
  /**
  * @Method: add
  * @Description:向数据库中插入大文本数据
  * @Anthor:孤傲苍狼
  *
  */
  @Test
  public void add(){
    Connection conn = null;
    PreparedStatement st = null;
    ResultSet rs = null;
    Reader reader = null;
    try{
      conn = JdbcUtils.getConnection();
      String sql = "insert into testclob(resume) values(?)";
      st = conn.prepareStatement(sql);
      //这种方式获取的路径,其中的空格会被使用“%20”代替
      String path = JdbcOperaClob.class.getClassLoader().getResource("data.txt").getPath();
      //将“%20”替换回空格
      path = path.replaceAll("%20", " ");
      File file = new File(path);
      reader = new FileReader(file);
      st.setCharacterStream(1, reader,(int) file.length());
      int num = st.executeUpdate();
      if(num>0){
        System.out.println("插入成功!!");
      }
      //关闭流
      reader.close();
    }catch (Exception e) {
      e.printStackTrace();
    }finally{
      JdbcUtils.release(conn, st, rs);
    }
  }
  
  /**
  * @Method: read
  * @Description: 读取数据库中的大文本数据
  * @Anthor:孤傲苍狼
  *
  */
  @Test
  public void read(){
    Connection conn = null;
    PreparedStatement st = null;
    ResultSet rs = null;
    try{
      conn = JdbcUtils.getConnection();
      String sql = "select resume from testclob where id=2";
      st = conn.prepareStatement(sql);
      rs = st.executeQuery();
      
      String contentStr ="";
      String content = "";
      if(rs.next()){
        //使用resultSet.getString("字段名")获取大文本数据的内容
        content = rs.getString("resume");
        //使用resultSet.getCharacterStream("字段名")获取大文本数据的内容
        Reader reader = rs.getCharacterStream("resume");
        char buffer[] = new char[1024];
        int len = 0;
        FileWriter out = new FileWriter("D:\\1.txt");
        while((len=reader.read(buffer))>0){
          contentStr += new String(buffer);
          out.write(buffer, 0, len);
        }
        out.close();
        reader.close();
      }
      System.out.println(content);
      System.out.println("-----------------------------------------------");
      System.out.println(contentStr);
    }catch (Exception e) {
      e.printStackTrace();
    }finally{
      JdbcUtils.release(conn, st, rs);
    }
  }
}

四、使用JDBC处理MySQL的二进制数据

对于MySQL中的BLOB类型,可调用如下方法设置:

?
1
PreparedStatement. setBinaryStream(i, inputStream, length);

对MySQL中的BLOB类型,可调用如下方法获取:

?
1
2
InputStream in = resultSet.getBinaryStream(String columnLabel);
InputStream in = resultSet.getBlob(String columnLabel).getBinaryStream();

4.1、 测试范例

1、编写SQL测试脚本

?
1
2
3
4
5
create table testblob
(
   id int primary key auto_increment,
   image longblob
 );

2、编写测试代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package me.gacl.demo;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import me.gacl.utils.JdbcUtils;
import org.junit.Test;
 
/**
* @ClassName: JdbcOperaClob
* @Description: 使用JDBC操作MySQL的二进制数据(例如图像、声音、二进制文)
* @author: 孤傲苍狼
* @date: 2014-9-19 下午10:10:04
*
*/
public class JdbcOperaBlob {
 
  /**
  * @Method: add
  * @Description:向数据库中插入二进制数据
  * @Anthor:孤傲苍狼
  *
  */
  @Test
  public void add(){
    Connection conn = null;
    PreparedStatement st = null;
    ResultSet rs = null;
    try{
      conn = JdbcUtils.getConnection();
      String sql = "insert into testblob(image) values(?)";
      st = conn.prepareStatement(sql);
      //这种方式获取的路径,其中的空格会被使用“%20”代替
      String path = JdbcOperaBlob.class.getClassLoader().getResource("01.jpg").getPath();
      //将“%20”替换会空格
      path = path.replaceAll("%20", " ");
      File file = new File(path);
      FileInputStream fis = new FileInputStream(file);//生成的流
      st.setBinaryStream(1, fis,(int) file.length());
      int num = st.executeUpdate();
      if(num>0){
        System.out.println("插入成功!!");
      }
      fis.close();
    }catch (Exception e) {
      e.printStackTrace();
    }finally{
      JdbcUtils.release(conn, st, rs);
    }
  }
  
  /**
  * @Method: read
  * @Description: 读取数据库中的二进制数据
  * @Anthor:孤傲苍狼
  *
  */
  @Test
  public void read() {
    Connection conn = null;
    PreparedStatement st = null;
    ResultSet rs = null;
    try {
      conn = JdbcUtils.getConnection();
      String sql = "select image from testblob where id=?";
      st = conn.prepareStatement(sql);
      st.setInt(1, 1);
      rs = st.executeQuery();
      if (rs.next()) {
        //InputStream in = rs.getBlob("image").getBinaryStream();//这种方法也可以
        InputStream in = rs.getBinaryStream("image");
        int len = 0;
        byte buffer[] = new byte[1024];
        
        FileOutputStream out = new FileOutputStream("D:\\1.jpg");
        while ((len = in.read(buffer)) > 0) {
          out.write(buffer, 0, len);
        }
        in.close();
        out.close();
      }
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      JdbcUtils.release(conn, st, rs);
    }
  }
}

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

延伸 · 阅读

精彩推荐