Results 1 to 3 of 3

Thread: Displaying an Image in a JSP

  1. #1
    jamescraft is offline Member
    Join Date
    Feb 2010
    Posts
    59
    Rep Power
    3

    Default Displaying an Image in a JSP

    I am working on one live project where I use java as front end and Access as back end. I display the image through data base. I have tried to do this, but I am unable to get the solution for this purpose. If you are having any suggestions then reply me. It can helpful to me. Thanks in advanced.

  2. #2
    mark_carter is offline Member
    Join Date
    Feb 2010
    Posts
    58
    Rep Power
    3

    Default

    I think you should make use of the code below and get the solution for your problem.
    Code:
    <td> <img src ="<% out.println (container.getImgCamping ())%>" name ="img"> </ td>
    You just want to add the code below in your program and get your problem resolved.

  3. #3
    steven.cole is offline Member
    Join Date
    Feb 2010
    Posts
    58
    Rep Power
    3

    Default

    HI, I think the program below will simply solve your problem:

    Code:
    ResultSet resultset=st.executeQuery("select * from images");
    while(resultset.next())
    {
    byte arr[] = resultset.getBytes(4);
    String get_price=resultset.getString(5);
    res.setContentType("pic/gif");
    res.getOutputStream().write(arr);
    out.println("Price in Rs. "+get_price);
    }
    res.getOutputStream().flush();
    res.getOutputStream().close();

Similar Threads

  1. Pc Displaying php local web server
    By martin in forum Windows Vista
    Replies: 1
    Last Post: 10-29-2009, 06:33 PM
  2. Displaying a form
    By carlos in forum Everything Else
    Replies: 0
    Last Post: 04-08-2009, 06:00 AM
  3. Displaying number with a base
    By Jacory666 in forum Windows Vista
    Replies: 0
    Last Post: 12-06-2008, 06:34 AM
  4. Displaying Only Unread Messages
    By neil97 in forum Applications
    Replies: 0
    Last Post: 08-15-2008, 03:52 PM
  5. Displaying Full Screen
    By poulharis in forum Everything Else
    Replies: 0
    Last Post: 08-06-2008, 02:17 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48