BufferedInputStream을 데이터베이스에서 BufferedImage로 변환하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-11-13 09:47:02
원래의
148명이 탐색했습니다.

How to Convert a BufferedInputStream from a Database to a BufferedImage?

BufferedInputStream을 이미지로 변환

문제:

데이터베이스에서 검색된 BufferedInputStream 개체를 어떻게 변환할 수 있습니까? BufferedImage로? 기존 코드는 null 이미지를 반환합니다.

해결책:

  1. BufferedInputStream에 유효한 이미지가 포함되어 있는지 확인하세요. 파일로 저장한 다음 BufferedImage로 다시 읽어 확인하세요.
  2. 바이트를 가져올 때 Blob의 올바른 길이가 사용되는지 확인하세요. H2 데이터베이스의 경우 길이가 long으로 반환되지만 Blob#getBytes에서는 int가 필요합니다.
  3. 또는 Blob#getBytes 대신 Blob#getBinaryStream을 사용하세요. 데이터베이스가 Blob 콘텐츠를 메모리에 저장하지 않는 경우 필요할 수 있습니다.

예:

다음 Java 코드는 Blob#getBinaryStream을 사용하여 이미지를 읽습니다. 데이터베이스에서 BufferedImage로 변환합니다:

import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.sql.Blob;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.imageio.ImageIO;

public class ImageDatabaseHelper {

    private Connection con;

    public BufferedImage loadImage(int imageId) throws IOException, SQLException {

        PreparedStatement stmt = null;
        ResultSet rs = null;
        BufferedImage image = null;

        try {

            stmt = con.prepareStatement("select image from images where id = ?");
            stmt.setInt(1, imageId);
            rs = stmt.executeQuery();

            while (rs.next()) {

                Blob blob = rs.getBlob(1);
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                try (ByteArrayInputStream bais = new ByteArrayInputStream(blob.getBinaryStream())) {
                    ImageIO.read(bais).writeTo(baos);
                }
                image = ImageIO.read(new ByteArrayInputStream(baos.toByteArray()));
            }

        } finally {
            try {
                rs.close();
            } catch (Exception e) {
            }
            try {
                stmt.close();
            } catch (Exception e) {
            }
        }

        return image;
    }

}
로그인 후 복사

위 내용은 BufferedInputStream을 데이터베이스에서 BufferedImage로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿