java中String插入到mysql数据库blob字段中;然后从数据库中读出blob再转成String;

  1. String转成bolb插入到mysql数据库中

        DbConn db=new DbConn();
        Connection con=db.getConnection();
        PreparedStatement pstmst = null;
        ByteArrayInputStream stream = null;
        try {
            String sql = "insert into t values(?,1)";//?位置是blob类型的
            pstmst =con.prepareStatement(sql);
            String content = "aBc\nBBB";
            stream = new ByteArrayInputStream(content.getBytes());
            pstmst.setBinaryStream(1,stream,stream.available());
            pstmst.executeUpdate();
            
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } finally{
            try {
                
                pstmst.close();
                stream.close();
                db.release(con);
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }    
        }

    2. 然后从数据库中读出blob再转成String;

       DbConn db=new DbConn();
       Connection con=db.getConnection();
       PreparedStatement pstmst = null;
       InputStream is = null;
       ResultSet rs = null;
        
       byte[] Buffer = new byte[4096];
       String sql = "select config from t where id = ?";
       pstmst =con.prepareStatement(sql);
       pstmst.setInt(1, 1);
       rs = pstmst.executeQuery();
       if(rs.next())
       {
            is = rs.getBinaryStream("config");//config是blob类型的
       }
       int size = 0;
       String result = "";
            
       ByteArrayInputStream msgContent =(ByteArrayInputStream) rs.getBinaryStream("config");
       byte[] byte_data = new byte[msgContent.available()];
       msgContent.read(byte_data, 0,byte_data.length);
       result = new String(byte_data);
       System.out.println(result);

转载于:https://www.cnblogs.com/ivanUp/archive/2011/12/07/2278991.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值