blob大小限制 oracle_java 处理oracle blob字段(图片)大小 再保存到数据库

在java中  查询一个表的 图片字段(blob类型)

判断该图片大小,如果大于100K,那么就把该图片处理成100K

我现在做到获取该图片

但是 处理图片大小遇到了问题

出现错误的地方:src = javax.imageio.ImageIO.read(inputStream);

我的代码如下

package com.hinge.tools;

import java.awt.image.BufferedImage;

import java.io.BufferedOutputStream;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStream;

import java.io.OutputStream;

import java.io.StringWriter;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import com.hinge.eis.db.DataAccess;

import com.hinge.eis.db.DataAccessOra;

public class ImageDx {

public static void main(String[] args) {

DataAccess dataccess = new DataAccessOra();

Connection conn = dataccess.getConnection();

PreparedStatement ps2 = null;

PreparedStatement stmt = null;

ResultSet rs2 = null;

try {

conn.setAutoCommit(false); // 第一步:插入一个空的CLOB

String sql2 = "select PHOTO,PERSON_ID from hr_person where rownum >=1 and rownum <2order by person_id for   update    ";

ps2 = conn.prepareStatement(sql2);

stmt = conn.prepareStatement(sql2);

rs2 = ps2.executeQuery();

String personid=null;

stmt =conn.prepareStatement("update hr_person set photo =empty_blob() where person_id =?");

while (rs2.next()) {

oracle.sql.BLOB blob = (oracle.sql.BLOB) rs2.getBlob("PHOTO");

personid = rs2.getString("PERSON_ID");

stmt.setString(1,personid);

stmt.executeUpdate();

stmt.close();

//String content = out.toString();

InputStream input =blob.getBinaryStream();

OutputStream   os   =   blob.getBinaryOutputStream();

BufferedOutputStream   output   =   new   BufferedOutputStream(os);

float f=100;

String content = processImage(input,f);

// 写,向数据库写图片

OutputStream out = null;

int blobsize = (int)content.length();

byte[] blobbytes = new byte[blobsize];

int bytesRead = 0;

out.write(blobbytes, 0, blobsize);

os.close();

out.close();

input.close();

}

stmt.executeBatch();

conn.commit();

if (stmt != null)

stmt.close();

if (rs2 != null)

rs2.close();

if (ps2 != null)

ps2.close();

if (conn != null)

conn.close();

} catch (Exception e) {

try {

conn.rollback();

} catch (Exception ex) {

e.printStackTrace();

}

e.printStackTrace();

}

finally{

try {

if (stmt != null)

stmt.close();

if (rs2 != null)

rs2.close();

if (ps2 != null)

ps2.close();

if (conn != null)

conn.close();

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

private static String processImage(InputStream inputStream, float tagsize) {

try {

java.awt.Image src = null;

if (inputStream == null) {

} else

src = javax.imageio.ImageIO.read(inputStream);

if (src == null)

return null;

// float tagsize = 200;

int old_w = src.getWidth(null); //

int old_h = src.getHeight(null);

int new_w = 0;

int new_h = 0; //

float tempdouble = old_w / tagsize;

if (tempdouble < 1)//

tempdouble = (float) 1.0;

new_w = Math.round(old_w / tempdouble);

new_h = Math.round(old_h / tempdouble);//

BufferedImage tag = new BufferedImage(new_w, new_h,

BufferedImage.TYPE_INT_RGB);

tag.getGraphics().drawImage(src, 0, 0, new_w, new_h, null); //

return tag.toString();

} catch (IOException e) {

e.printStackTrace();

}

return null;

}

}

出现错误的地方:src = javax.imageio.ImageIO.read(inputStream);

问题补充:src 这个为null

原来我对文件图片处理时候

src = javax.imageio.ImageIO.read(inputStream); 这个地方没有问题

2010年12月29日 13:20

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你可以使用以下的 Java 工具类来实现将 Oracle 数据库中的 BLOB 类型照片读取并保存到本地目录,并重命名保存的功能: ```java import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.sql.*; public class BlobImageUtil { public static void saveBlobImageToDirectory(String url, String username, String password, String query, String columnName, String savePath) { Connection connection = null; PreparedStatement preparedStatement = null; ResultSet resultSet = null; try { // 建立数据库连接 connection = DriverManager.getConnection(url, username, password); preparedStatement = connection.prepareStatement(query); resultSet = preparedStatement.executeQuery(); while (resultSet.next()) { // 获取 BLOB 字段的输入流 Blob blob = resultSet.getBlob(columnName); InputStream inputStream = blob.getBinaryStream(); // 生成保存的文件名 String fileName = generateFileName(); // 保存到本地目录 saveBlobImage(inputStream, savePath, fileName); // 关闭输入流 inputStream.close(); } } catch (SQLException | IOException e) { e.printStackTrace(); } finally { // 关闭资源 closeResultSet(resultSet); closeStatement(preparedStatement); closeConnection(connection); } } private static void saveBlobImage(InputStream inputStream, String savePath, String fileName) throws IOException { FileOutputStream fileOutputStream = null; try { // 创建保存目录 File saveDir = new File(savePath); if (!saveDir.exists()) { saveDir.mkdir(); } // 创建保存文件 File file = new File(saveDir, fileName); fileOutputStream = new FileOutputStream(file); // 读取输入流并写入文件 byte[] buffer = new byte[1024]; int bytesRead; while ((bytesRead = inputStream.read(buffer)) != -1) { fileOutputStream.write(buffer, 0, bytesRead); } } finally { // 关闭输出流 if (fileOutputStream != null) { fileOutputStream.close(); } } } private static String generateFileName() { // 生成唯一的文件名,可根据需求进行修改 return UUID.randomUUID().toString() + ".jpg"; } private static void closeResultSet(ResultSet resultSet) { if (resultSet != null) { try { resultSet.close(); } catch (SQLException e) { e.printStackTrace(); } } } private static void closeStatement(Statement statement) { if (statement != null) { try { statement.close(); } catch (SQLException e) { e.printStackTrace(); } } } private static void closeConnection(Connection connection) { if (connection != null) { try { connection.close(); } catch (SQLException e) { e.printStackTrace(); } } } } ``` 你可以使用以下代码来调用该工具类: ```java String url = "jdbc:oracle:thin:@localhost:1521:xe"; // 数据库连接 URL String username = "your_username"; // 数据库用户名 String password = "your_password"; // 数据库密码 String query = "SELECT image_blob FROM your_table"; // 查询语句,将 your_table 替换为你的表名和字段名 String columnName = "image_blob"; // BLOB 字段名 String savePath = "path_to_save_directory"; // 本地保存目录 BlobImageUtil.saveBlobImageToDirectory(url, username, password, query, columnName, savePath); ``` 请确保替换上述代码中的相关参数以适应你的实际情况,并且提供正确的数据库连接信息和查询语句。此外,确保你的 Oracle 驱动程序已正确配置。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值