I have made my file and cannot get it to run on blogger. I have looked at a lot of information about this and cannot seem to get it to run.
Is there a problem with my code? It always comes up with class not found problem.
<applet
code = "Snake"
archive = "Snake.jar"
height=300
width=300
codebase="https://sites.google.com/site/zmchenryfilecabinet/filecabinet/">
</applet>
This is the output of the jar tf Snake.jar command in the command prompt:
META-INF/MANIFEST.MF
.classpath
Snake.class
Apple.class
applescaled.png
bodySprite.png
headSprite.png
apple.png
Snake.java
controlScreen.jpg
snakehead.png
endAnimation.gif
apple1.png
snakebody.png
.project
In the manifest there is an empty line after my class file and in the manifest it reads:
Manifest-Version: 1.0
Main-Class: Snake
Also my main class begins with
public class Snake extends JApplet{
Console output
Some of the console output I see when I open the HTML seen below.
Analysis
Note particularly:
As well as:
Possibly at line 37 of
Snake.java
the code is doing something like:That will not be allowed, even in a trusted applet. An applet might share a VM with other applets.
If my prediction is correct, try instead:
Otherwise, well.. For better help sooner, post an SSCCE. Or at least the first 37 lines of
Snake.java
. :)HTML
Class caching
As an aside. If you are still having trouble with NCDFE (and in general with applet development).
To get around class/code caching during development, be sure to flush the class cache in the Java Console between test runs of software.