Paths within Jars are paths, not actual directories as you can use them on a file system. To get all resources within a particular path of a Jar file:
- Gain an
URL pointing to the Jar.
- Get an
InputStream from the URL.
- Construct a
ZipInputStream from the InputStream.
- Iterate each
ZipEntry, looking for matches to the desired path.
..will I still be able to test my Applet when it's not inside that jar? Or will I have to program two ways to get my Images?
The ZipInputStream will not work with loose resources in directories on the file system. But then, I would strongly recommend using a build tool such as Ant to build (compile/jar/sign etc.) the applet. It might take an hour or so to write the build script & check it, but thereafter you can build the project by a few keystrokes and a couple of seconds.
It would be quite annoying if I always have to extract and sign my jar if I want to test my Aplet
I'm not sure what you mean there. Where does the 'extract' come into it? In case I was not clear, a sand-boxed applet can load resources this way, from any Jar that is mentioned in the archive attribute. Another thing you might do, is to separate the resource Jar(s) from the applet Jar. Resources typically change less than code, so your build might be able to take some shortcuts.
BTW - some things I would like you to answer, to help me provide the best advice:
- Will the Jar file(s) be on the applet's run-time class-path? (Or to put that a different way: for a sand-boxed applet, are the Jar's mentioned in the
archive attribute of the applet element?)
- Some suggestions mention
File or related classes. An applet cannot work with File objects unless it is trusted and getting them from the file system of the end user. I am guessing that you target Jars are on the server. In that case, the only way to access them is by URL & InputStream. Are the Jars on the server, or client system?
- About signing the Jar. What exactly does your applet do that requires trust?
I think I really have to consider putting my Images into a seperate directory outside the jar.
If you mean on the server, there will be no practical way to get a listing of the image files short of help from the server. E.G. Some servers are insecurely set up to produce an HTML based 'file list' for any directory with no default file (such as an index.html).
I have only got one jar, in which my classes, images and sounds are.
OK - consider moving the sounds & images into a separate Jar. Or at the very least, put them in the Jar with 'no compression'. While Zip comression techniques work well with classes, they are less efficient at compressing (otherwise already compressed) media formats.
I have to sign it because I use the "Preferences" class to save user settings."
There are alternatives to the Preferences for applets, such as cookies. In the case of plug-in 2 architecture applet, you can launch the applet (still embedded in the browser) using Java Web Start. JWS offers the PersistenceService. Here is my small demo. of the PersistenceService.
Speaking of JWS, that brings me to: Are you absolutely certain this game would be better as an applet, rather than an app (e.g. using a JFrame) launched using JWS?
Applets will give you no end of stress, and JWS has offered the PersistenceService since it was introduced in Java 1.2.