我是Java Applets的新手,我有一点问题。 我需要在浏览器中加载的applet中加载和显示图像。这是我用于显示图像的代码的一部分:
Panel first=new JPanel();
URL url = null;
try {
url = new URL(new URL(path),"Dell_laptop.jpg");
} catch (MalformedURLException e1) {
e1.printStackTrace();
}
Image img = getImage(url);
ImageIcon fimg = new ImageIcon(img);
JLabel jLabel1=new JLabel(fimg);
first.add(jLabel1);
所以当它在eclipse中工作时,它的工作完美无缺。但是当我试图在HTML页面中加载这个相同的applet时,它不起作用。加载了Applet,但是没有显示图像。路径是正确的,检查它