applet开发相关问题

1、在applet中不能直接使用本地图形资源,如:Icon
dukeStanding = new ImageIcon("duke_standing.gif");在实际使用中,我们可以使用相应网站的,如下:Icon
dukeStanding = new ImageIcon(getImage(getCodeBase(), "duke_standing.gif"));

2、Applet类中getDocumentBase()和getCodeBase()区别。
Applet类中getDocumentBase()和getCodeBase()的区别
Applet类中提供了这2种方法帮我门获取URL对象,其中getDocumentBase()方法返回URL对象,代表了包含Applet的HTML文件所在目录,而getCodeBase()方法返回的URL对象代表了applet文件即.class文件所在目录。它根据HTML文件的"Applet"标记中的CODEBASE属性值计算出来,若该属性没有设置则返回该HTML文件所在目录。

3、在定义成员变量时同时初始化,语名中除了可包含静态方法外,不能包含类普通方法,因为这时这个普通方法所需的this指针还没有,会出现nollpointer的异常。如以下在Applet中定义成员变量是错误的:
Image image1 = getImage(getCodeBase(), "duke_standing.gif");
可将这句放在init()方法中就正确了。

你可能感兴趣的:(applet)