HTML:
...
<img src=showpicture.jsp>
...
==============================
JSP:
.....InputStream stream = rset.getBinaryStream(column); 
DataOutputStream os = new DataOutputStream( response.getOutputStream() );
try {
  int a1 = stream.read();
  while (a1 >= 0) {
    os.write((char)a1);
     a1 = stream.read();
     }
  os.close();
  }
catch(Exception e){}
...