Y
yawnmoth
I compiled a file - HelloWorld.java - and then included it on a webpage
and got "Hello world!" displayed back to me. I then change the text
from "Hello world!" to "test", recompiled it, and upon hitting the
refresh key in the browser, I still see "Hello world!" - not "test".
Any ideas as to what the problem is? It almost seems as if java
applets are maybe being cached or something...
Here's HelloWorld.java:
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}
The browser I'm using is FireFox.
and got "Hello world!" displayed back to me. I then change the text
from "Hello world!" to "test", recompiled it, and upon hitting the
refresh key in the browser, I still see "Hello world!" - not "test".
Any ideas as to what the problem is? It almost seems as if java
applets are maybe being cached or something...
Here's HelloWorld.java:
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}
The browser I'm using is FireFox.