My image is placed in C:/UploadedFiles/IMG.JPG and i want to display it on a JSP but i am unable to do it. Please give me a solution ASAP. I have tried but still its not working. I don't know if there is any linkage problem. I am using NetBeans.
response.setContentType("image/jpeg");
OutputStream os =response.getOutputStream();
FileInputStream in=new FileInputStream(new File("D:\\pictures\\aayush.JPG"));
byte[] buf= new byte[2048];
int ch=in.read();
while(ch >= 0){
os.write(buf);
ch=in.read(buf);
}
in.close();
os.close();