介绍
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation.
Note: 在你开始本教程之前,你必须下载downloaded 并安装installed Java SE Development Kit。
Java applets像Java应用程序一样,它们的建立都是遵循相同的三个步骤—编写,编译及运行。不同的是,它们是在一部分网页上运行,而不是在你的桌面上运行。
本文的主要目的是创建一个简单的Java applet. 为了达到这一点要遵循以下三个基本步骤:
1. 在Java中编写一个简单的applet
2. 编译Java源代码
3. 创建一个涉及到applet的HTML页
4. 在浏览器中打开HTML页
编写Java源代码
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation.
我使用记事本来创建我的Java源代码文件。打开你选择的editor并输入这样的代码:
//Reference the required Java libraries
import java.applet.Applet;
import java.awt.*;
//The applet code
public class FirstApplet extends Applet {
public void paint(Graphics g) {
//Draw a rectangle width=250, height=100
g.drawRect(0,0,250,100);
//Set the color to blue
g.setColor(Color.blue);
//Write the message to the web page
g.drawString("Look at me, I'm a Java Applet!",10,50);
}
}
不要过多的担心代码的意义。这是你的第一个applet,重要的是看一看它是如何创建,编译和运行的。保存文件
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation.
保存你的程序文件为“FirstApplet.java”。确保你使用的文件名是正确的。如果你看到如下显示的代码:
public class FirstApplet extends Applet {
这是一个指令来调用applet类 “FirstApplet”。文件名要与这个类的名字相匹配并有一个“.java”的扩展。如果你的文件没有另存为"FirstApplet.java",Java compiler就会抱怨而且不会编译你的applet。