So, I am creating a mobile application using j2me and lwuit. In that application the user will open a file.
My question is how do I get list of files inside my jar application..
Ex : Inside a res folder there are :
File1.fl, File2.fl, File3.fl,
We can open a single file using getResourceAsStream() function.
But how do I get the list of file names inside the folder.
I came across with FileConnection but it seems that it is used to access files in the local phone.
In java we can do this using the File class.. Anyone can help me with these...
Thanks guys..