Results 1 to 3 of 3
Thread: waiting for a file
- 06-23-2008, 08:02 PM #1
Member
- Join Date
- Apr 2008
- Posts
- 19
- Rep Power
- 0
waiting for a file
Hi people,
I'm trying to get a picture shown in a JPanel.
The problem is that the picture gets created when the app starts. This takes a while. Apparently the picture is not yet created when the app gets to the code to show the (not yet existing) picture which obviously generates an error.
How do I handle this?
- 06-23-2008, 08:06 PM #2
Show the code you have so far.
- 06-23-2008, 08:18 PM #3
Member
- Join Date
- Apr 2008
- Posts
- 19
- Rep Power
- 0
This is what i have so far:
and a bit further on:Java Code:try { FileOutputStream oFile = new FileOutputStream("photo.jpg"); oFile.write(Picture.getData()); oFile.close(); }catch (Exception e){}
where ShowImage extends JPanel:Java Code:ShowImage photo = new ShowImage(); photo.setBounds(280,20,200,350); this.getContentPane().add(photo); this.repaint();
It will do what I want the second time I run the app: the phot.jpg file is already there from the previous time and the picture will load into the ShowImage, but clearly I don't need the picture of the previous run :)Java Code:public class ShowImage extends JPanel { BufferedImage image; public ShowImage() { try { File input = new File("photo.jpg"); image = ImageIO.read(input); } catch (Exception ie) {} } public void paint(Graphics g) { g.drawImage(image, 0, 0, null); }
Similar Threads
-
count character in text file as input file
By aNNuur in forum New To JavaReplies: 7Last Post: 03-25-2010, 04:01 PM -
File fp = new File(filePath);fp.exists() does not yeild proper result
By ganeshp in forum Advanced JavaReplies: 2Last Post: 04-07-2009, 06:25 AM -
[SOLVED] File chooser selecting file from directory...?
By prabhurangan in forum AWT / SwingReplies: 12Last Post: 06-18-2008, 04:08 AM -
How to parse the CSV(Comma separation values)file and validate the file using java
By padmajap13 in forum Advanced JavaReplies: 7Last Post: 05-23-2008, 03:46 AM -
How to read a text file from a Java Archive File
By Java Tip in forum Java TipReplies: 0Last Post: 02-08-2008, 09:13 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks