how can I read a jar file outside the MIDlet?

Hi,

I want to write a MIDlet which reads a random jar file on the mobile phone and then process it. In order to read the content of the jar file, I need to unzip it first. But as I know, MIDP and CLDC right now do not provide jar file unzip library. I have two questions:

1. right now, is there any library outside available, whichunzip a jar file and can be used on MIDP and CLDC ?

2. In the near future, is there any plan that CLDC will support this function?

thanks,

Mia

[520 byte] By [miaa] at [2007-11-27 3:34:55]
# 1
are you sure that you need to unzip it?you can access to the jar vie the getResourceAsStream(...) method...
suparenoa at 2007-7-12 8:38:04 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
You don't read random jar file in mobile phone but only the jar file owner of current midlet suite by using the supareno suggestions
PeppeMEa at 2007-7-12 8:38:04 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
getResourceAsStream() can access files only from its JAR, but I need to access files outside its JAR, a random JAR in the mobile phone, which I can not include in my midlet.
miaa at 2007-7-12 8:38:04 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4
I do need to read random jar file which is not owned by the current midlet
miaa at 2007-7-12 8:38:04 > top of Java-index,Java Mobility Forums,Java ME Technologies...