开发者

How do I store a picture in MySQL?

开发者 https://www.devze.com 2022-12-14 08:13 出处:网络
I want to store an image in a MySQL database. I have created a table with a BLOB datatype, but now how do I store the image i开发者_如何转开发n this table?You may want to check out the following examp

I want to store an image in a MySQL database. I have created a table with a BLOB datatype, but now how do I store the image i开发者_如何转开发n this table?


You may want to check out the following example:

From java2s.com: Insert picture to MySQL:

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class InsertPictureToMySql {
  public static void main(String[] args) throws Exception, IOException, SQLException {
    Class.forName("org.gjt.mm.mysql.Driver");
    Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/databaseName", "root", "root");
    String INSERT_PICTURE = "INSERT INTO MyPictures (photo) VALUES (?)";

    FileInputStream fis = null;
    PreparedStatement ps = null;
    try {
      conn.setAutoCommit(false);
      File file = new File("/tmp/photo.png");
      fis = new FileInputStream(file);
      ps = conn.prepareStatement(INSERT_PICTURE);
      ps.setBinaryStream(1, fis, (int) file.length());
      ps.executeUpdate();
      conn.commit();
    } finally {
      ps.close();
      fis.close();
    }
  }
}

MySQL Table:

CREATE TABLE MyPictures (
   photo  BLOB
);

If the image is located on your MySQL server host, you could use the LOAD_FILE() command from a MySQL client:

INSERT INTO MyPictures (photo) VALUES(LOAD_FILE('/tmp/photo.png'));


read the content of the file (BINARY) and insert it in insert \ update MYSQL query

a lot of example in google :

http://www.java2s.com/Code/Java/Database-SQL-JDBC/InsertpicturetoMySQL.htm

http://www.roseindia.net/jdbc/save_image.shtml

http://www.jguru.com/faq/view.jsp?EID=1278882

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号