存储的图像(Longblob)在我的数据库中,我无法将其显示在jlabel中

时间:2013-11-04 04:37:22

标签: mysql swing jdbc blob

我正在尝试将数据库中的图像显示到jlabel中 IMAGES =列名,currentuser.getText()=我在顶部有一个文本,用于确定我的数据库中的USERNAME列

已编辑 - 我真的不知道该怎么做了,已经过了一周但仍然无法显示数据库中的图像

public class MyProfile extends JFrame implements ActionListener{
Container c;
ResultSet rs;
Connection con;
Statement st;
TempData temp = new TempData(); //Class for storing current user who logins (Set & get)
JLabel currentuser = new JLabel("" + temp.getUsername());
JLabel displayPhoto = new JLabel();
public MyProfile() {
    super("My Profile");
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setSize(1175, 698);
    this.setLocationRelativeTo(null);
    this.setVisible(true)
    c = this.getContentPane();
    c.setLayout(null);

    try {
        Class.forName("com.mysql.jdbc.Driver");
        con = DriverManager.getConnection("jdbc:mysql://localhost/pancakefinder", "root", "");
        st = con.createStatement();
    } catch (Exception exp) {
    }

    c.add(currentuser);
    currentuser.setFont(new Font("Times New Roman", Font.PLAIN, 20));
    currentuser.setForeground(Color.orange);

    c.add(displayPhoto);
    displayPhoto.setBounds(160, 330, 250, 230);
    displayPhoto();
}

public void displayPhoto() {
    try {
       PreparedStatement pst = null;
       rs = null;
        pst = con.prepareStatement("select IMAGES from  images where USERNAME = '" + currentuser.getText() + "'");
        rs = pst.executeQuery();

        byte[] bytes = null;
        if (rs.next()) {
            bytes = rs.getBytes("images");
            Image img = Toolkit.getDefaultToolkit().createImage(bytes);
            displayPhoto.setIcon(new ImageIcon((img)));
            displayPanel.add(displayPhoto);
        }

    } catch (SQLException e) {

        e.printStackTrace();
    }


}
public static void main(Stringp[] args){
MyProfile ex = new MyProfile();

} }

1 个答案:

答案 0 :(得分:0)

我猜测displayPanelJPaneldisplayPhotoJLabel。如果在displayPhoto之前添加pack()setIcon()就足够了。如果没有,您需要在revalidate()add()小组rs.next()。同时检查false结果是否为{{1}},并记住它只会获取一行;你需要一个循环来获取任何其他行。