retreiving images from the database and dispaly them on HTML file
maher dabbas
Greenhorn
Joined: Dec 02, 2001
Posts: 26
posted
0
Hi all. I've retreived stored as Blob from Oracle database, and get it as binary stream and write it into a file as follows a1=res.getBlob("item_pic"); long len = a1.length(); int len2=(int)len; InputStream input=a1.getBinaryStream(); data=new byte[len2]; int byte_read=input.read(data);
String p="C:\\tomcat\\webapps\\test\\jsp\\"; File temp=new File(p,"temp.jpg"); fos=new FileOutputStream(temp); fos.write(data); fos.close(); the image is stored in a .jpg file an i'm able to open it and view it with no problems,BUT, when i try to put this image in HTML file using <img src="temp.jpg" > , i does not work!!! the HTML file and the image are in the same folder, there is no corruption in the image , i'm able to open it and view it can any body help me plz, this is driving me nuts!!!1
Regards. Maher Dabbas
Qaiser Chaudhry
Greenhorn
Joined: Apr 25, 2001
Posts: 10
posted
0
If the image is getting to the directory you want it to be in. Then instead of causing yourself the headache of changing and running the jsp, try just a simple HTML file and try to fix it from there first. It might just be a simple path or tag problem. When it's fixed, jost port your changes to the jsp.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: retreiving images from the database and dispaly them on HTML file