I want to read files form my *jar archive. I read in the internet how to read from zip:
ZipFile zipFile = new ZipFile( "moers.zip" );
ZipEntry entry = zipFile.getEntry( "DerAlteSack.png" );
InputStream is = zipFile.getInputStream( entry );
So my question: Can I treat a *jar file as a *zip file?