Is there a way to determine the starting point of a java applet given just the jar file? I'm trying to create a website where I can upload an applet's jar file and then play it back with something similar to the following.
<object type="application/x-java-applet" height="450" width="450">
<param name="code" value="<? echo $startingClass; ?>" />
<param name="archive" value="<? echo $jarUrl; ?>" />
Applet failed to run.
</object>
The applet's I've been given do not have correct manifest or jnlp files. I've tried using jar -tvf 'jarfile.jar' to get a list of all of the classes in the jar file, but can't determine which one is the entry point.
Any help is appreciated!