JDBC处理大数据案例--处理文本

本文介绍了如何使用JDBC处理大数据场景,特别是针对文本数据的存储和获取。通过创建包含大文本字段的数据库表,利用FileReader和setCharacterStream方法存储文件内容到数据库,以及使用getCharacterStream方法从结果集中读取文本内容。
摘要由CSDN通过智能技术生成

处理文本

存储大文本

create table mytext(

id int primary key auto_increment,

content longtext

)

存储

File file = new File("JdbcUtils1.java");

FileReader fr = new FileReader(file);

pst.setCharacterStream(1, fr, (int) (file.length()));

获取:

Reader r = rs.getCharacterStream("content");

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Reader;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class MyTextTest {
	public static void main(String[] args) throws Exception {
		// setText();
		getText();

	}

	// 存储文件
	public static void setText() throws SQLException, FileNotFoundException {
		Connection con = JdbcUtils2.getConnection();
		String sql = "insert into mytext values(null,?)";
		PreparedStatement pst = con.prepareStatement(sql);
		File f = new File("JdbcUtils1.java");
		FileReader fr = new FileReader(f);

		pst.setCharacterStream(1, fr, (int) f.length());

		// 执行
		int row = pst.executeUpdate();
		if (row != 0) {
			System.out.println("插入成功");

		}

		// 释放资源
		JdbcUtils2.closePreparedStatement(pst);
		JdbcUtils2.closeConnection(con);
	}

	// 获取文件
	public static void getText() throws SQLException, IOException {
		Connection con = JdbcUtils2.getConnection();
		String sql = "select * from mytext where id =?";
		;
		PreparedStatement pst = con.prepareStatement(sql);
		pst.setInt(1, 1);
		ResultSet rs = pst.executeQuery();

		if (rs.next()) {
			Reader reader = rs.getCharacterStream("content");

			FileWriter fw = new FileWriter("a.java");

			char[] chs = new char[1024 * 100];
			int len = 0;
			while ((len = reader.read(chs)) != -1) {
				fw.write(chs, 0, len);
				fw.flush();
			}
			reader.close();
			fw.close();
		}
		JdbcUtils2.closeResultSet(rs);
		JdbcUtils2.closePreparedStatement(pst);
		JdbcUtils2.closeConnection(con);
	}

}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值