how to display image retrieved from mysql on JFrame
-
I am facing a problem in displaying image that retrieved from database on JFrame. Here is the that i will use, ......... try { Class.forName("com.mysql.jdbc.Driver"); Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/studio","root",""); Statement st=con.createStatement(); ResultSet rs = st.executeQuery( "select image from photo_instn where cust_id='2'") ; while(rs.next()) { byte[] imagedata = rs.getBytes("image") ; Image img = Toolkit.getDefaultToolkit().createImage(imagedata); ImageIcon icon =new ImageIcon(img); JLabel lPhoto = new JLabel(icon) ; setLayout(null); // BYTES TO IMAGE System.out.println("Inside"); System.out.println(lPhoto); this.add(lPhoto) ; lPhoto.setBounds(200,20,300,400); } } This code has no problem.but image not displayed on frame... Please help me for solving this problem....
-
Answer:
try adding this.setVisible(true) to your code after this.add(lPhoto) ;
Nidhin at Stack Overflow Visit the source
Other answers
1 Retrieve byte[] from DB as you did in your code then InputStream in = new ByteArrayInputStream(imageInByte); BufferedImage bImageFromConvert = ImageIO.read(in); 2 Represent that image on JFrame boolean Graphics.drawImage(Image img, int x, int y, ImageObserver observer); Also See http://download.oracle.com/javase/tutorial/2d/images/drawimage.html
Jigar Joshi
We don't know the context of how this code is used. Generally after adding/removing a component from a GUI you need to use: panel.revalidate(); panel.repaint();
camickr
Related Q & A:
- How to display image in grid?Best solution by Stack Overflow
- How to Display an Image in PDF, which is retrieved from MySql Database :JSP and iText?Best solution by Stack Overflow
- Why cant i view my contacts display image? please help if you know ,thanks?Best solution by Yahoo! Answers
- Lost Display Image?Best solution by Yahoo! Answers
- How can I change my display image on Yahoo Messenger?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.