如何使用java在postgres数据库中上传和显示图像

如何使用java在postgres数据库中上传和显示图像,java,database,eclipse,postgresql,Java,Database,Eclipse,Postgresql,在eclipse中使用java从postgres数据库插入和检索图像的程序 import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement;

在eclipse中使用java从postgres数据库插入和检索图像的程序

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;

public class WriteImage {

public static void main(String[] args) {

    Connection con = null;
    PreparedStatement pst = null;
    FileInputStream fin = null;

    String url = "jdbc:postgresql://localhost/testdb";
    String user = "user12";
    String password = "34klq*";               

    try {

        File img = new File("woman.jpg");
        fin = new FileInputStream(img);

        con = DriverManager.getConnection(url, user, password);

        pst = con.prepareStatement("INSERT INTO images(data) VALUES(?)");
        pst.setBinaryStream(1, fin, (int) img.length());
        pst.executeUpdate();

    } catch (FileNotFoundException | SQLException ex) {
        Logger lgr = Logger.getLogger(WriteImage.class.getName());
        lgr.log(Level.SEVERE, ex.getMessage(), ex);

    } finally {

        try {
            if (pst != null) {
                pst.close();
            }
            if (con != null) {
                con.close();
            }
            if (fin != null) {
                fin.close();
            }

        } catch (IOException | SQLException ex) {
            Logger lgr = Logger.getLogger(WriteImage.class.getName());
            lgr.log(Level.WARNING, ex.getMessage(), ex);

        }
    }
}

}

您的问题是什么(请:)?欢迎来到Stack Overflow。如果您包含错误输出或尝试插入时发生了什么行为,它将帮助我们解决您的问题。您的问题是什么?欢迎使用堆栈溢出。如果您包含错误输出或尝试插入时发生的行为,它将帮助我们解决您的问题。