这个是mysql下存取blob字段的一个很简单的类,跟据自己的需要改改就行了
/**
* Title: BlobPros.java
* Project: test
* Description: 把图片存入mysql中的blob字段,并取出
* Call Module: mtools数据库中的tmp表
* File: C:\downloads\luozsh.jpg
* Copyright: Copyright (c) 2003-2003
* Company: uniware
* Create Date: 2002.12.5
* @Author: FeiFan
* @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:\\Downloads\\luozsh1.jpg");
blob.blobRead("c:/downloads/luozishang.jpg",47);
}
catch(Exception e)
{
System.out.println("[Main func error: ]" + e.getMessage());
}
}
}
温馨提示:内容为网友见解,仅供参考
java String类型转换为Blob类型怎么转
String 的getBytes方法获得该字符串的字节数组(注意编码),然后存入blob即可
java String类型和blob类型转换
如果你的数据真的是 String ,那按理就是用 Clob 嘛。Blob 主要用于二进制内容,比如图片,附件。如果保持数据库表结构不变的话,用 blob 也行,但你需要在读取和写入两头明确地指定相同的字符集,否则读取这个还原过程会得到不到期望的结果。只要我们用支持这种字符的字符集理论上来说,只要编码和解码...
JAVA中使用 oracle数据库时BLOB和string之间用转换么
Blob getBlob > read(byte[] b) > new String(byte[] bytes)Blob 和String 之间用inputstream outputstream
java中blob类型是什么类型
blob是数据库二进制对象的类型,图片,文本之类的.java没有特定类,非要说的话,就是个超大的字节数组~
java中如何将大于10000的字符串,插入oracle数据库中的blob类型...
不要用blob,用clob类型。先插入一个empty_clob(),然后用Statement myStmt = conn.createStatement();ResultSet clobResultSet=myStmt.executeQuery("SELECT "+strCLOBColName +" FROM "+strTable +" WHERE "+ strIdColName +" ='" + strIdValue+ "' FOR UPDATE ");CLOB myClob = (oracle....
java里怎么判断Blob类型是否为空
要看写的Blob类型是什么 是不是只的boolean类型还是声明为Boolean的类 jdk1.4情况下 java里有基本类型的boolean和Boolean的包装类。两者是有区别的。至于什么区别,我想楼主应该多看看书。Blooean的声明的变量是引用类型。这个引用将指向一个对象。该对象可以为空。例如:Boolean b = null;System.out....
BLOB类型是什么类型
在MySQL中,BLOB类型代表二进制大对象,用于存储大量的二进制数据,如图片、音频或视频等。这个Java类BlobPros提供了一种简单的方法来处理Blob字段的存取操作。它首先通过`Class.forName`加载MySQL驱动,然后连接到数据库,支持将本地文件内容(如`luozsh.jpg`)插入到`tmp`表的Blob字段中。插入时,使用`...
java数据库blob字段的下载(读取)
图片在pojo类中对应为byte[]类型,clxxb是一个pojo类,clxxb.getClpic()得到图片对应的字节数组byte[]。其实输出文件就是输出一个字节流。希望对你有帮助。 InputStream input=clxxb.getClpic().getBinaryStream(); byte[] buffer=new byte[input.available()]; ServletOutputStream out=response.getOutputStream(...
java 关于blob类型问题
String sql1 = "select context from news where v_id ='"+vid+"' for update"; \/\/ 使用"FOR UPDATE"得到表的写锁 rs = stmt.executeQuery(sql1);if (rs.next()) { BLOB blob = (BLOB) rs.getBlob(1); \/\/ 得到BLOB对象 OutputStream outout = blob.getBinaryOutputStream(); \/\/...
怎么把在宋庆龄sqlserver中存储的String型数据,存入oracle中的blob类型...
oracle 函数 utl_raw.cast_to_raw('comment') 转换字符串到 raw来进行blob存储