1

这是我的小代码。小程序中添加了一个按钮。按钮有一个图像图标。当我从服务器运行它时,代码运行正常,但按钮上没有图像。

.java 文件的目录:C:\Program Files\OpenLaszlo Server 4.9.0\Server\lps-4.9.0\App 我在这里生成类文件。我将 html 文件保存在这里。此外,图像文件夹在此文件夹中。html代码:

<html>
<applet code="applet.class" width="800" height="600">
</applet>
</html> 


/*

*这里是 .java 代码:

import java.applet.Applet;
import java.awt.Image;
import java.net.URL;
import javax.swing.ImageIcon;
import javax.swing.JButton;

/**
 *
 * @author USER
 */
public class applet extends Applet {
    JButton button;
    URL url;
    Image myImage;
    ImageIcon myIcon;


    public void init(){



       button = new JButton();
       this.add(button);


       try{
                 url = new URL(getCodeBase(), "image/REC1.jpg");
           }catch(Exception e){}
         myImage = getToolkit().createImage(url);
         myIcon = new ImageIcon(myImage);
//         myIcon = new ImageIcon("image/REC1.jpg");
         button.setIcon(myIcon);
    }

    public void paint(){



    }
}
4

2 回答 2

2

我正在使用它,它正在工作:

        URL url = applet.class.getResource("/image/"+name_of_picture);
        Image I = this.getToolkit().getImage(url);  
于 2012-07-05T09:26:19.930 回答
0
 url = new URL(getCodeBase(), "/image/REC1.jpg");
于 2012-07-05T09:34:43.173 回答