I have an Applet and when I use the getCodeBase() I get a plain URL that looks like this:
http://localhost:8080/x/y/z/
I can use other Applet methods like getImage(getCodeBase(), "images/img.gif") to get resources (like an image in this case).
However, if I use Applet.class.getResource("/images/img.gif") I see URLs that look like this:
jar:http://localhost:8080/x/y/z/a/b/lib/myjar.jar!/images/img.gif
Is one way better than the other? What are the pros and cons of each?