介紹
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
Note: 在你開始本教程之前
Java applets像Java應用程序一樣
本文的主要目的是創建一個簡單的Java applet
編寫Java源代碼
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
我使用記事本來創建我的Java源代碼文件
//Reference the required Java libraries
import java
import java
//The applet code
public class FirstApplet extends Applet {
public void paint(Graphics g) {
//Draw a rectangle width=
g
//Set the color to blue
g
//Write the message to the web page
g
}
}
不要過多的擔心代碼的意義保存文件
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
保存你的程序文件為
public class FirstApplet extends Applet {
這是一個指令來調用applet類
打開一個終端窗口
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
要打開一個終端窗口
你將看到
終端窗口就顯示出來
Java Compiler
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
我們需要終端窗口來訪問叫做
為了在終端窗口運行javac
一但你找到它的位置
set path= *the directory where javac lives*
E
set path=C:\Program Files\Java\jdk
按回車
改變目錄
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
看一看在哪裡保存了FirstApplet
在終端窗口改變目錄
cd *directory where FirstApplet
E
cd C:\Documents and Settings\Paul\My Documents\Java\Applets
通過看到左邊的光標你可以分辨你在右邊的目錄中
javac FirstApplet
在點擊回車之後
如果在沒有任何信息提示下你返回到命令提示符處
Tip: 一但applets編譯成功
創建HTML文件
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
值得注意的是到目前為止你已經確切的遵循相同的步驟
Java Applets不同於Java 應用程序
打開記事本
< HTML>
< HEAD>
< TITLE>My First Java Applet
< /HEAD>
< BODY>
Here
< applet code=
< /BODY>
< /HTML>
在相同的目錄中文件另存為 這個是在網頁中最重要的一行
< applet code=
當網頁被顯示
打開HTML頁
Microsoft product screen shot(s) reprinted with permission from Microsoft Corporation
最後一步也是最好的一個;我們可以看到Java applet開始運行了
雙擊l文件
恭喜你!你已經創建了你的第一個Java applet!
快速小總結
花一點時間來總結一下創建Java applet的步驟
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26459.html