buc99
Don't Tread on Me!
Hi everyone.
I enabled Java in Safari, but have had many issues with Java in Safari. I was not able to load a java page on java.sun.com.
I tried to create a simple HelloJava.class and load it with Safari.
I then tried to run it with the following html code:
I get an Illegal.Acces.Exception error message in Safari but it runs correctly in IE.
Anyone else seen this? Does anyone else have an idea of what is wrong?
Thanks.
SA
I enabled Java in Safari, but have had many issues with Java in Safari. I was not able to load a java page on java.sun.com.
I tried to create a simple HelloJava.class and load it with Safari.
import java.applet.Applet;
public class HelloJava extends Applet {
static void main(String args[]) {
System.out.println("Hello Java!");
}
}
I then tried to run it with the following html code:
<html>
<head><title>Hello Java!</title></head>
<body>
<h1>My Template Applet</h1>
<APPLET CODE="HelloJava.class" WIDTH=200 HEIGHT=200>
</APPLET>
</body>
</html>
I get an Illegal.Acces.Exception error message in Safari but it runs correctly in IE.
Anyone else seen this? Does anyone else have an idea of what is wrong?
Thanks.
SA