訪問者の画像やその他の詳細をテーブル tbl_visitor に保存しています。コードは次のとおりです。
String string_op="F:\\POSTERS\\Roses\\TROPIC4.png";
File imageFile = new File(string_op);
FileInputStream fis = new FileInputStream(imageFile);
String queryVis="insert into tbl_visitor(visitor_name,contact_no," +
"job_profile,org_name,photo_id_proof,type_of_visitor,date," +
"extra_people,image) values('"+
name_of_visitor.getText()+"','"+
contact_num.getText()+"','"+
job_profile.getText()+"','"+
org.getText()+"','"+
photo_id_num.getText()+"','"+
type_of_visitor.getSelectedItem().toString()+"','"+
date_and_time.getText()+"','"+
tf1.getText()+"','"+
"fis,(int)imageFile.length()"+"')";
JFrameに画像を表示し、JLabelを使用して画像を表示したいのですが、JLabelに画像を割り当てることができません。画像を表示するために次のコードを試しましたが、エラーが発生しました。
Blob image_vis = rs1.getBlob(10);
image_cap.setIcon(image_vis);
私を助けてください。