2012-06-01 9 views
8

データベースからイメージを取得したい。そのために、イメージ用のバイト配列を作成しました。この配列は文字列で渡され、その文字列をイメージ形式に変換します。私はそのイメージをJlabelフィールドに割り当てています。コードは以下の通りである:バイト配列をブロブに変換する方法

try 
{ 
    Blob image_vis = rs1.getBlob(10); 
    InputStream x=image_vis.getBinaryStream(); 
    OutputStream out=new FileOutputStream(string_op); 
    byte[] bytes = string_op.getBytes(); 
    String s=new String(bytes); 
    System.out.println(+s); //prints bytes for the string 
    ImageIcon icon_cap = new ImageIcon(string_op); 
    image_cap.setIcon(icon_cap); //prints nothing to Jlabel 
    //image_cap.setText(s);  //prints a path of a image 
    } 
+0

http://stackoverflow.com/questions/6662813/easiest-way-to-convert-byte-array-into-blob-in-java –

答えて

22
Blob blob = new javax.sql.rowset.serial.SerialBlob(bytes); 
関連する問題