jdbc 与 mysql 连接 - Blod及批量数据处理

9 篇文章 0 订阅

Blob 类型的数据操作

package com.atguigu5.blob;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Blob;
import java.sql.Connection;
import java.sql.Date;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import org.junit.Test;

import com.atguigu3.bean.Customer;
import com.atguigu3.util.JDBCUtils;

/**
 * 测试使用 PreparedStatement 操作 Blob 类型的数据
 * 
 */
public class BlobTest {
	
	// 向数据表 customers 中插入 Blob 类型的字段
	@Test
	public void testInsert1() throws Exception {
		Connection conn = JDBCUtils.getConnection();
		String sql = "insert into customers(name,email,birth,photo)values(?,?,?,?)";
		
		PreparedStatement ps = conn.prepareStatement(sql);
		
		ps.setObject(1, "李阿豪");
		ps.setObject(2,"li@qq.com");
		ps.setObject(3, "1992-09-08");
		// 操纵 Blob 类型的变量
		FileInputStream is = new FileInputStream(new File("壁纸3.jpg"));
		ps.setBlob(4, is);
		
		ps.execute();
		
		is.close();
		JDBCUtils.closeResource(conn, ps);
	}
	
	// 向数据表 customers 中插入 Blob 类型的字段
	@Test
	public void testInsert2() throws Exception {
		Connection conn = JDBCUtils.getConnection();
		String sql = "insert into customers(name,email,birth,photo)values(?,?,?,?)";
		
		PreparedStatement ps = conn.prepareStatement(sql);
		
		ps.setObject(1, "元昊");
		ps.setObject(2,"yuanhao@qq.com");
		ps.setObject(3, "1992-09-08");
		// 操纵 Blob 类型的变量
		FileInputStream is = new FileInputStream(new File("壁纸5.jpg"));
		ps.setBlob(4, is);
		
		ps.execute();
		
		is.close();
		JDBCUtils.closeResource(conn, ps);
		
		// 在 mysql 下的 my.ini 文件尾添加: max_allowed_packet=16M
		// 完成后,"此电脑" - "管理" - "服务和应用程序" - "服务" - "MySQL" - "重新启动"
		// 完成操作后,就可以上传大于 1M 的图片到 MySQL 了。
	}
		
	
	// 向数据表 customers 中修改 Blob 类型的字段 
	@Test
	public void testUpdate() throws Exception {
		Connection conn = JDBCUtils.getConnection();
		String sql = "update customers set photo = ? where id = ?";
		
		PreparedStatement ps = conn.prepareStatement(sql);
		
		// 填充占位符
		// 操纵 Blob 类型的变量
		FileInputStream is = new FileInputStream(new File("壁纸1.jpeg"));
		ps.setBlob(1, is);
		// 23 : 要修改 id 号
		ps.setInt(2,23);
		
		ps.execute();
		
		is.close();
		JDBCUtils.closeResource(conn, ps);
	}
	
	// 查询数据表 customers 中 Blob 类型的字段
	@Test
	public void testQuery() {
		Connection conn = null;
		PreparedStatement ps = null;
		InputStream is = null;
		FileOutputStream fos = null;
		ResultSet rs = null;
		try {
			conn = JDBCUtils.getConnection();
			String sql = "select id,name,email,birth,photo from customers where id = ?";
			ps = conn.prepareStatement(sql);
			ps.setInt(1, 23);
			
			
			rs = ps.executeQuery();
			if(rs.next()) {
				
			// 方式一:通过顺序的方式 类似于 ArrayList
//			int id = rs.getInt(1);
//			String name = rs.getString(2);
//			String email = rs.getString(3);
//			Date birth = rs.getDate(4);
				
			// 方式二:通过别名的方式
			int id = rs.getInt("id");
			String name = rs.getString("name");
			String email = rs.getString("email");
			Date birth = rs.getDate("birth");
			
			Customer cust = new Customer(id,name,email,birth);
			System.out.println(cust);
			
			// 将 Blob 类型的字段下载下来,以文件的方式保存在本地
			Blob photo = rs.getBlob("photo");
			// photo 是一个比较大的数据,这时需要用 流 的方式获取
			is = photo.getBinaryStream();
			fos = new FileOutputStream("zhangyuhao.jpg");
			byte[] buffer = new byte[1024];
			int len;
			while((len = is.read(buffer)) != -1) {
				fos.write(buffer,0,len);
			}
				
			}
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			try {
				if(is != null)
					is.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
			try {
				if(fos != null)
					fos.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
			JDBCUtils.closeResource(conn, ps, rs);
		}
		
	}
}

让 mysql 开启批处理的支持 :

?rewriteBatchedStatements = true 写在配置文件的 url 后面

user=root
password=123456
url=jdbc:mysql://localhost:3306/test?rewriteBatchedStatements = true
driverClass=com.mysql.cj.jdbc.Driver
package com.atguigu5.blob;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;

import org.junit.Test;

import com.atguigu3.util.JDBCUtils;

/**
 * 使用 PreparedStatement 实现批量数据的操作
 *
 * update、delete 本身就具有批量操作的效果。
 * 此时的批量操作,主要指的时批量插入。使用 PreparedStatement 如何实现更高效的批量插入?
 * 
 * 题目:向 goods 表中插入 20000 条数据
 *   CREATE TABLE goods(
 *       id INT PRIMARY KEY AUTO_INCREMENT,
 *       NAME VARCHAR(25)
 *   );
 * 
 * 方式一:使用 Statement
 *    Connection  conn = JDBCUtils.getConnection();
 *    Statement st = conn.createStatement();
 *    for(int i = 1; i <= 20000; i++){
 *    		String sql = "insert into goods(name) values('name_" + i + "')";
 *    		st.execute(sql);
 *    }
 * 
 */
public class InsertTest {
	// 批量插入的方式二:使用 PreparedStatement
	@Test
	public void testInsert1() {
		Connection conn = null;
		PreparedStatement ps = null;
		try {
			
			long start = System.currentTimeMillis();
			
			conn = JDBCUtils.getConnection();
			String sql = "insert into goods(name)values(?)";
			ps = conn.prepareStatement(sql);
			for(int i = 1; i <= 20000; i++) {
				ps.setObject(1, "name_" + i);
				
				ps.execute();
			}
			
			long end = System.currentTimeMillis();
			
			System.out.println("花费的时间为: " + (end - start));// 20000:76229 
			
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			JDBCUtils.closeResource(conn, ps);
		}
	}
	
	/*
	 *  批量插入的方式三
	 *  		1.addBatch()、executeBatch()、clearBatch()
	 *  		2.mysql 服务器默认是关闭此处理的,我们需要通过一个参数,让 mysql 开启批处理的支持。
	 *  	   		    ?rewriteBatchedStatements = true 写在配置文件的 url 后面
	 *  		3.使用更新的 mysql 驱动:mysql-connector-java-5.1.37-bin.jar
	 *  
	 */
	@Test
	public void testInsert2() {
		Connection conn = null;
		PreparedStatement ps = null;
		try {
			
			long start = System.currentTimeMillis();
			
			conn = JDBCUtils.getConnection();
			String sql = "insert into goods(name)values(?)";
			ps = conn.prepareStatement(sql);
			for(int i = 1; i <= 1000000; i++) {
				ps.setObject(1, "name_" + i);
				
				// 1."攒" sql
				ps.addBatch();
				
				if(i % 500 == 0) {
					// 2.执行 batch
					ps.executeBatch();
					
					// 3.清空 batch
					ps.clearBatch();
				}
			}
			
			long end = System.currentTimeMillis();
			
			System.out.println("花费的时间为: " + (end - start));// 20000:76229 -- 1525
															    // 1000000:18780 -- 		
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			JDBCUtils.closeResource(conn, ps);
		}
	}
		
	/*
	 *  批量插入的方式四: 设置连接不允许自动提交数据		
	 *  
	 */
	@Test
	public void testInsert3() {
		Connection conn = null;
		PreparedStatement ps = null;
		try {
			
			long start = System.currentTimeMillis();
			
			conn = JDBCUtils.getConnection();
			
			// 设置不允许自动提交数据(为了提高插入速度,缩短插入时间)
			conn.setAutoCommit(false);
			
			String sql = "insert into goods(name)values(?)";
			ps = conn.prepareStatement(sql);
			for(int i = 1; i <= 1000000; i++) {
				ps.setObject(1, "name_" + i);
				
				// 1."攒" sql
				ps.addBatch();
				
				if(i % 500 == 0) {
					// 2.执行 batch
					ps.executeBatch();
					
					// 3.清空 batch
					ps.clearBatch();
				}
			}
			
			// 提交数据
			conn.commit();
			
			long end = System.currentTimeMillis();
			
			System.out.println("花费的时间为: " + (end - start));// 20000:76229 -- 1525
															    // 1000000:18780 -- 9939		
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			JDBCUtils.closeResource(conn, ps);
		}
	}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值