Save and Retrieve Image from MySql Database Using Java

Here you will get an example for save and retrieve image from MySql database using Java.

In development we generally use folders for managing images. But we can store images directly in database using BLOB (Binary Large Object) data type.

MySql has following blob types:

TINYBLOB: 255 bytes

BLOB: 64 KB

MEDIUMBLOB: 16 MB

LONGBLOB: 4 GB

Save and Retrieve Image from MySql Database Using Java

Depending upon requirement we can use any type. It is recommend no to use database for storing images with large size because it will increase the database size.

Below I have given an example of how to store and retrieve images from database. The description for table that I used is given below.

Table Details

 

Save and Retrieve Image from MySql Database Using Java

How to Save Image in Database

 

Above example will take image from location E:\\image.png and save it into database table. Actually you can’t see the image directly in the table. You have to retrieve it from database and then save it to some location. Below example shows how you can do this.

 

How to Retrieve Image from Database

 

Above example will fetch image from database and save it at location E:\\image1.png.

Comment below if you facing difficulty to understand above code.

Happy Coding!! 🙂 🙂

28 thoughts on “Save and Retrieve Image from MySql Database Using Java”

  1. Hi Neeraj,

    I need how to download the image in database table and the image is stored in server location.
    i am using spring and hibernate framework.

    1. After getting the image in byte from database add following lines.

      Image img = Toolkit.getDefaultToolkit().createImage(image);
      ImageIcon icon = new ImageIcon(img);
      JLabel lPhoto = new JLabel();
      lPhoto.setIcon(icon);

      Here image is of byte type. I hope this will help.

  2. “pos” + “length” arguments can not be larger than the BLOB’s length.
    above is an SqlException coming when i tried to retrieve an image .

    1. The maximum length of Blob type is 64kb, you are trying to retrieve an image which is greater than 64kb. Use bigger types like mediumblob or longblob.

  3. I want to download blob data for 5800K records and avg size of one blob is 2kb so total data would be 11 tb approx.

  4. sir please help me I want to insert a passport size photo in netbeans jforms from user and their fingerprint also by using fingerprint scanner device so please help me …
    plz give me idea and way to code this problem..and sir can you tell me that where I can learn all about these classes and how to use them form internet ..

  5. how can i carry out a CRUD operation with an image field using DAO and MVC patterns with JSTL.
    i’ve tried using your example but i run into problem when it comes to converting blob to string and vice versa.

  6. org.apache.jasper.JasperException: Unable to compile class for JSP:

    An error occurred at line: 58 in the jsp file: /user_view.jsp
    The method print(boolean) in the type JspWriter is not applicable for the arguments (void)
    55:
    56: <a style="text-decoration: none;" href="status.jsp?mail=”/>
    57:
    58:
    59:
    60:
    61:

Leave a Comment

Your email address will not be published. Required fields are marked *