JDBCで大きなテキストデータにアクセスする

2723 ワード

JDBCで大きなテキストデータにアクセスする
 
public class ClobTest {	
	public static void main(String[] args) throws SQLException, IOException, ClassNotFoundException {
		//  create();
		read(); 
	}

	//             ,   JdbcTest_bak.java   
	static void read() throws SQLException, IOException, ClassNotFoundException {
		Connection conn = null;
		PreparedStatement ps = null; 
		ResultSet rs = null;		
		
		try {
			// 1.    
			Class.forName("com.mysql.jdbc.Driver"); 
			
			// 2.    
			conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/jdbc", "root", "123456");
			
			// 3.    
			ps = conn.prepareStatement("select big_text from clob_test");

			// 4.    
			rs = ps.executeQuery();

			// 5.    
			while (rs.next()) {
				Clob clob = rs.getClob(1); 
				Reader reader = clob.getCharacterStream();

				File file = new File("JdbcTest_bak.java");
				Writer writer = new BufferedWriter(new FileWriter(file));
				char[] buff = new char[1024];				
				for (int i = 0; (i = reader.read(buff)) > 0;) {
					writer.write(buff, 0, i);
				}
				
				writer.close();
				reader.close();
			}
		} finally {
			if(rs != null) rs.close(); rs = null;
			if(ps != null) ps.close(); ps = null;
			if(conn != null) conn.close(); conn = null;
		}
	}	
	
	//             (ClobTest.java  )
	static void create() throws SQLException, IOException, ClassNotFoundException {
		Connection conn = null;
		PreparedStatement ps = null;
		ResultSet rs = null;
		
		try {
			// 1.    
			Class.forName("com.mysql.jdbc.Driver"); 
			
			// 2.    
			conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/jdbc", "root", "123456");
			
			// 3.    
			String sql = "insert into clob_test(big_text) values (?) ";
			ps = conn.prepareStatement(sql);
			
			File file = new File("src/com/jdbc/ClobTest.java");
			Reader reader = new BufferedReader(new FileReader(file));
			
			ps.setCharacterStream(1, reader, (int) file.length());
			
			// 4.    
			int i = ps.executeUpdate();
			reader.close();

			System.out.println("i=" + i);
		} finally {
			if(rs != null) rs.close(); rs = null;
			if(ps != null) ps.close(); ps = null;
			if(conn != null) conn.close(); conn = null;
		}
	}
}