web-dev-qa-db-ja.com

MYSQL DBにBLOBとして保存されている画像を取得する

データベースにある情報に基づいてPDFを作成しようとしています。JavaからmysqlデータベースにBLOBとして保存されているTIFFイメージを取得する必要があることを知っています。そして、私が見つけた例は、それを取得してファイル(ただしディスク上)として保存する方法を示しており、メモリに常駐する必要がありました。

テーブル名:IMAGENES_REGISTROS

BLOBフィールド名:IMAGEN

何か案は?

15
Sheldon

ResultSet呼び出し:

Blob imageBlob = resultSet.getBlob(yourBlobColumnIndex);
InputStream binaryStream = imageBlob.getBinaryStream(0, imageBlob.length());

または、次のように呼び出すこともできます。

byte[] imageBytes = imageBlob.getBytes(1, (int) imageBlob.length());

BalusCがコメントで述べたように、次のように使用する方がよいでしょう。

InputStream binaryStream = resultSet.getBinaryStream(yourBlobColumnIndex);

そして、コードは、画像をどのように読み取って埋め込むかによって異なります。

19
Bozho
imagebytes = rs.getBytes("images");
image=getToolkit().createImage(imageBytes);
Image img = image.getScaledInstance(100,100,Image.SCALE_SMOOTH);
ImageIcon icon=new ImageIcon(img);
jLabel6.setIcon(icon);

NetbeansのブログMysqlから調整可能なイメージを取得するには、このコードを試してください

2
Ratul Arora
final String dbURL = "jdbc:mysql://localhost:3306/portfolio";
    final String dbUser = "root";
    final String dbPass = "";

    Connection conn = null;
    Statement stmt = null;

    try {
        //DriverManager.registerDriver(new com.mysql.jdbc.Driver());
        Class.forName("com.mysql.jdbc.Driver");

        conn = DriverManager.getConnection(dbURL, dbUser, dbPass);
        System.out.println("db connected");
        stmt = (Statement) conn.createStatement();

        ResultSet rs1;
        rs1 = stmt.executeQuery("select profileImage from tbl_welcome where id = 1117");

        if (rs1.next()) {
            byte[] imgData = rs1.getBytes("profileImage");//Here....... r1.getBytes() extract byte data from resultSet 
            System.out.println(imgData);
            response.setHeader("expires", "0");
            response.setContentType("image/jpg");

            OutputStream os = response.getOutputStream(); // output with the help of outputStream 
            os.write(imgData);
            os.flush();
            os.close();

        }
    } catch (SQLException ex) {
        // String message = "ERROR: " + ex.getMessage();
        ex.printStackTrace();
    } finally {
        if (conn != null) {
            // closes the database connection
            try {
                conn.close();
            } catch (SQLException ex) {
                ex.printStackTrace();
            }
        }
    }
2
private void loadFileDataBlobFromDataBase()
             {
            List<Blob> bFile = jdbcTemplate.query(sql, new RowMapper<Blob>() {
                @Override
                public Blob mapRow(ResultSet rs, int rowNum)
                        throws SQLException {
                    return rs.getBlob(1);
                }
            });
            if (bFile != null && bFile.size() > 0) {
                bufReader = new BufferedReader(new InputStreamReader(bFile.get(
                        0).getBinaryStream()));
            }
            if (null != bufReader) {
                dataVO record = null;
                String lineStr = bufReader.readLine();
                record = (dataVO) lineMapper.mapLine(lineStr, 1);               
            }
        }
    }
1
Raje