I\'m trying to run a Java Applet (html file), but the browser keeps saying:
\"Your security settings have blocked a local applicatio
just add your .jar file in applet tag as an attribute as shown below:
<applet
    code="file.class"
    archive="file.jar"
    height=550 
    width=1100>         
</applet>