Re: How to get a list of file names under a!_NEWLINE_!directory in a jar file?
Posted By:
Tim_Rohaly
Posted On:
Friday, April 20, 2001 08:12 PM
Create an instance of JarFile then get the enumeration
of the jar using the entries() method. Iterate through
the entries and for each entry, invoke the getName() method.