Yeah, I actually do understand Peter Budo.
I just ripped the image display code from a bad source apparently (probably roseindia.net).
I actually AM using the FileConnection API (code from
http://j2mesamples.blogspot.com/2009...pi-jsr-75.html)
The thing is, if I'm in the else of the displayCurrentRoot function, that checkes whether the element of the file list is a folder or an item (jpg), I want it to display my image.
Normally it would just display the item's name with the currentDir variable like so :
append(currentDir,null);
Now I tried :
Image img = Image.createImage(currentDir);
append(currentDir,img);
which didn't work, so I tried the entire path :
String path = currentRoot.getURL() + currentDir;
Image img = Image.createImage(path);
append(currentDir,img);
Your help is appreciated !