当前位置:首页 » 操作系统 » 数据库blob字段

数据库blob字段

发布时间: 2023-03-07 14:52:19

A. 请问sql server2008数据库如何读取BLOB字段的值

@Override
public String getFormViewById(final String id) {
return (String)getHibernateTemplate().execute(new HibernateCallback<Object>(){
public Object doInHibernate(Session session) throws HibernateException, SQLException {
String sql = "select formView from sys_forms where id='" + id + "'";
Connection conn = null;
PreparedStatement stmt = null;
ResultSet rs = null;
String content = "";
try {
conn = session.connection();
stmt = conn.prepareStatement(sql);
rs = stmt.executeQuery();
while(rs.next()){
Blob blob = (Blob) rs.getBlob("formView");
int bolblen = (int) blob.length();
byte[] data = blob.getBytes(1, bolblen);
content = new String(data,"utf-8");
}
}finally{
conn.close();
stmt.close();
}

return content;
}
});
}

B. 使用java语言操作,如何来实现MySQL中Blob字段的存取

/**
* Title: BlobPros.java
* Project: test
* Description: 把图片存入mysql中的blob字段,并取出
* Call Mole: mtools数据库中的tmp表
* File: C:downloadsluozsh.jpg
* Copyright: Copyright (c) 2003-2003
* Company: uniware
* Create Date: 2002.12.5
* @Author: ChenQH
* @version 1.0 版本*
*
* Revision history
* Name Date Description
* ---- ---- -----------
* Chenqh 2003.12.5 对图片进行存取
*
* note: 要把数据库中的Blob字段设为longblob
*
*/

//package com.uniware;

import java.io.*;
import java.util.*;
import java.sql.*;

public class BlobPros
{
private static final String URL = "jdbc:mysql://10.144.123.63:3306/mtools?user=wind&password=123&useUnicode=true";
private Connection conn = null;
private PreparedStatement pstmt = null;
private ResultSet rs = null;
private File file = null;

public BlobPros()
{
}

/**
* 向数据库中插入一个新的BLOB对象(图片)
* @param infile 要输入的数据文件
* @throws java.lang.Exception
*/
public void blobInsert(String infile) throws Exception
{
FileInputStream fis = null;
try
{
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
conn = DriverManager.getConnection(URL);

file = new File(infile);
fis = new FileInputStream(file);
//InputStream fis = new FileInputStream(infile);
pstmt = conn.prepareStatement("insert into tmp(descs,pic) values(?,?)");
pstmt.setString(1,file.getName()); //把传过来的第一个参数设为文件名
//pstmt.setBinaryStream(2,fis,(int)file.length()); //这种方法原理上会丢数据,因为file.length()返回的是long型
pstmt.setBinaryStream(2,fis,fis.available()); //第二个参数为文件的内容
pstmt.executeUpdate();
}
catch(Exception ex)
{
System.out.println("[blobInsert error : ]" + ex.toString());
}
finally
{
//关闭所打开的对像//
pstmt.close();
fis.close();
conn.close();
}
}

/**
* 从数据库中读出BLOB对象
* @param outfile 输出的数据文件
* @param picID 要取的图片在数据库中的ID
* @throws java.lang.Exception
*/

public void blobRead(String outfile,int picID) throws Exception
{
FileOutputStream fos = null;
InputStream is = null;
byte[] Buffer = new byte[4096];

try
{
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
conn = DriverManager.getConnection(URL);
pstmt = conn.prepareStatement("select pic from tmp where id=?");
pstmt.setInt(1,picID); //传入要取的图片的ID
rs = pstmt.executeQuery();
rs.next();

file = new File(outfile);
if(!file.exists())
{
file.createNewFile(); //如果文件不存在,则创建
}
fos = new FileOutputStream(file);
is = rs.getBinaryStream("pic");
int size = 0;
/* while(size != -1)
{
size = is.read(Buffer); //从数据库中一段一段的读出数据
//System.out.println(size);
if(size != -1) //-1表示读到了文件末
fos.write(Buffer,0,size);
} */
while((size = is.read(Buffer)) != -1)
{
//System.out.println(size);
fos.write(Buffer,0,size);
}

}
catch(Exception e)
{
System.out.println("[OutPutFile error : ]" + e.getMessage());
}
finally
{
//关闭用到的资源
fos.close();
rs.close();
pstmt.close();
conn.close();
}
}

public static void main(String[] args)
{
try
{

BlobPros blob = new BlobPros();
//blob.blobInsert("C:Downloadsluozsh1.jpg");
blob.blobRead("c:/downloads/1.jpg",47);
}
catch(Exception e)
{
System.out.println("[Main func error: ]" + e.getMessage());
}
}
}

热点内容
cf北京服务器ip 发布:2025-08-21 16:51:13 浏览:725
数据库字段值为空的数据 发布:2025-08-21 16:45:14 浏览:572
php项目视频 发布:2025-08-21 16:34:33 浏览:194
叉叉脚本激活码 发布:2025-08-21 16:34:32 浏览:250
清理ie缓存快捷键 发布:2025-08-21 16:07:30 浏览:443
算法规避 发布:2025-08-21 15:56:48 浏览:895
ip服务器是机器吗 发布:2025-08-21 15:40:34 浏览:770
wpf读数据库存储的时间 发布:2025-08-21 15:30:59 浏览:441
存储过程是先编译好的吗 发布:2025-08-21 15:25:07 浏览:889
java高并发编程详解 发布:2025-08-21 15:11:27 浏览:550