更多"java Applet应用程序的编写和执行共分为4步进行:编写源代码、"的相关试题:
[填空题]java Applet应用程序的编写和执行共分为4步进行:编写源代码、编写HTML文件调用该小程序、 【13】 、解释执行.
[填空题]Java Applet应用程序的编写和执行共分编写源代码、编写HTML文件调用该小程序、______和解释执行四步进行。
[填空题]现在有Java Applet小程序的源程序文件MyApplet.java,编译后生成的字节码文件为MyApplet.class,对应的HTML文件为MyApplet.html。查看该小程序的运行结果两种方式:运行命令 【14】 ;直接用浏览器打开MyApplet.html文件。
[简答题][说明]
当用户启动html浏览器并首次打开下面的html文档时,Java Applet小程序在第一个显示面板上显示字符串"HelloWorld";在第二个显示面板上画一条直线。
[Java代码]
import java.awt. *;
import javax.swing. *;
public class HelloWorldApplet extends JApplet
pubhc void (1) {
(2) str="HetloWorld";
JLabel label = new JLabel(str);
this. getContentPane( ).add(label);
}
}
import java.applet.Applet;
import java.awt.Graphics;
public class AppletPaint extends (3) {
public void paint( (4) ) {
g.drawLine(0,0,300,200);
}
}
[HTML文档]
<html>
<head>
<title> HTML Test Page </title>
</head>
<body>
<applet code=" (5) " width="300" height="100">
</applet>
<applet code=" AppletPaint.class" width="300" height="100">
</applet>
</body>
</html>
[简答题][说明]
当用户启动html浏览器并首次打开下面的html文档时,Java Applet小程序在第一个显示面板上显示字符串"HelloWorld";在第二个显示面板上画一条直线。
[Java代码]
import java.awt. *;
import javax.swing. *;
public class HelloWorldApplet extends JApplet
pubhc void (1)
(2) str="HetloWorld";
JLabel label = new JLabel(str);
this. getContentPane( ).add(label);
import java.applet.Applet;
import java.awt.Graphics;
public class AppletPaint extends (3)
public void paint( (4) )
g.drawLine(0,0,300,200);
[HTML文档]
<html>
<head>
<title> HTML Test Page </title>
</head>
<body>
<applet code=" (5) " width="300" height="100">
</applet>
<applet code=" AppletPaint.class" width="300" height="100">
</applet>
</body>
</html>
[填空题]Applet是Java的一类特殊应用程序,它嵌入 【10】 中,随主页发布到互联网上。
[填空题]JavaAplication应用程序的编写和执行分3步进行;编写源代码、编译源代码、 【9】 。
[填空题]Applet是Java的一类特殊应用程序,它嵌入_______中,随主页发布到互联网上。
[填空题]Java Application应用程序的编写和执行分3步进行:编写源代码、编译源代码、______。