[填空题] 下列Applet在坐标 ( 20,20) 处显示一幅GIF图像,在横线处填入正确的语句。 import java. net.*; import java. awt.*; import
21 查阅
[填空题] 下列Applet在坐标 ( 20,20) 处显示一幅GIF图像,在横线处填入正确的语句。
import java. net.*;
import java. awt.*;
import java. applet.*;
public class Test extends Applet
Image IMG;
public void init()
URL url = getDocumentBase ();
String name="IMG.gif";
【14】
public void paint(Graphics g)
g. drawImage ( IMG,20,20,this);
参考答案: