File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Swing / AWT / SWT / JFace and the fly likes images in JList Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Swing / AWT / SWT / JFace
Reply Bookmark "images in JList" Watch "images in JList" New topic
Author

images in JList

Nesrin aboud
Ranch Hand

Joined: Feb 08, 2010
Posts: 38

Hi there,

I made an applet and added a JList object into it and I have a folder containing images (0.jpg, 1.jpg, 2.jpg)

I want to add these images in the JList object in the form of loop when I tries this



the list resulted in list of object reference not image itself
so is there any solution for this issue

and thank you very much
Rob Camick
Ranch Hand

Joined: Jun 13, 2009
Posts: 1652
Add ImageIcon's to the ListModel, not Image's.

Nesrin aboud
Ranch Hand

Joined: Feb 08, 2010
Posts: 38
so how can I select from the ListModel certain icon to get the image and save it to folder or database
Bear Bibeault
Author and opinionated walrus
Marshal

Joined: Jan 10, 2002
Posts: 50691

"nesrin ab", please check your private messages for an important administrative matter.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Rob Camick
Ranch Hand

Joined: Jun 13, 2009
Posts: 1652
Read the ImageIcon API.
Nesrin aboud
Ranch Hand

Joined: Feb 08, 2010
Posts: 38
I tried another solution but also failed
please if any one can help me




Nesrin aboud
Ranch Hand

Joined: Feb 08, 2010
Posts: 38
in the last one there is no exception thrown but the images do not appear in the list
Rob Camick
Ranch Hand

Joined: Jun 13, 2009
Posts: 1652
I tried another solution but also failed


Why? I already gave you the solution.
Nesrin aboud
Ranch Hand

Joined: Feb 08, 2010
Posts: 38
can you give a sample code,
I tried your solution, but I have no experience with applets and failed to do it
so if you can write the sequence that is should follow to use the ListModel and ImagIcon
Michael Dunn
Rancher

Joined: Jun 09, 2003
Posts: 4041
> I made an applet
> images[i] = ImageIO.read(new File(path));

won't work in applets

google
getCodeBase()
Nesrin aboud
Ranch Hand

Joined: Feb 08, 2010
Posts: 38
why Michael
and where to add the getCodeBase()
Rob Camick
Ranch Hand

Joined: Jun 13, 2009
Posts: 1652
but I have no experience with applets


Well, thats an important piece of information to leave out (that this is for an applet).

Read the section from the Swing tutorial on How to Make Applets for an example of using images in an applet.
Nesrin aboud
Ranch Hand

Joined: Feb 08, 2010
Posts: 38
Thank you all very much.
 
 
subject: images in JList
 
Threads others viewed
Problem with the JScrollPane
Image Overlapping not proper
Tricky NullPointerException Problem
append multiple jpg images to form multipage jpg Image
Displaying image in applet on click event
developer file tools