Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie speichere ich ein Bild in MySQL?

Vielleicht möchten Sie sich das folgende Beispiel ansehen:

Von java2s.com:Bild in MySQL einfügen :

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-Tabelle:

CREATE TABLE MyPictures (
   photo  BLOB
);

Wenn sich das Bild auf Ihrem MySQL-Server-Host befindet, können Sie den LOAD_FILE() Befehl von einem MySQL-Client:

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