在 Java 中,開發人員可以使用 applet 概念將 Web 瀏覽器和頁面無縫結合,產生特定的輸出。 Java 中的 Applet 的範圍可以從簡單的 Applet 到非常複雜的 Applet。一個簡單的 Hello World 小程式可以讓人們了解基本的 Java 小程式如何運作以及如何在螢幕上顯示。在本文中,我們將探討基本的 Java applet 和另一個在解決各種實際問題中廣泛使用的 Java applet。 Java 小程式可以實作為多種其他程式語言,例如 Python、Dot Net 和其他程式碼。
在這個階段,我們將觀察小程式的生命週期。
開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
小程式的生命週期有五個基本階段。
讓我們來看看這 5 個階段的作用:
每當小程式運行時,它都會順序呼叫多個函數來確定主要目標並產生多個輸出。
小程式依序呼叫以下函數:
下面,我們提供了幾個 Java 中的 Applet 範例:
在編碼範例中,我們將看到 Hello World 小程式的基本版本。下圖說明了 BlueJ Java 程式設計平台中一個基本 Applet Hello World 的表示。
每當我們嘗試運行小程式時,小程式都會提供下面的螢幕,其中向我們顯示了許多選項,可供我們從一系列選項中進行選擇。在下面的畫面中,我們可以產生網頁、在 Applet Viewer 中執行 applet 或在 Web 瀏覽器中執行 applet。我們提供了多種在 BlueJ 程式設計平台中執行小程式的選項。盒子裡還可以提供小程式的高度和寬度,根據提供的高度和寬度,小程式運行,形成一個獨特的小程序,為各種問題提供解決方案。
現在我們看到範例編碼和導入套件的範例來呈現 Hello World 範例程式碼。在這個程式中,我們實作了Applet和Graphics等套件。開發人員使用 Graphics g 物件在網頁瀏覽器或任何所需的媒體中繪製和渲染輸出。
代碼:
import java.applet.Applet; import java.awt.Graphics; public class HelloWorld extends Applet { // Overriding paint() method @Override public void paint(Graphics g) { g.drawString("Hello World@ Great to be here!!!", 50, 50); } }
輸出:
此範例也提供了範例輸出。開發人員可以在 Java 小程式中包含附加註解以產生各種其他輸出。
輸出:
Now, we can do many functions on the applet, such as Restart, Reload, Stop, Save, Start, and Clone. These are functionalities that the applet provides with various stages.
In the next coding example, we will see more aspects of Java applets in which we see the basic functionality of Java applets. In the next Java applet, we change the height and width of the Java applet, and we make some fundamental changes in the functionality. The writing comes more in the middle. Below is an example of a coding sample that executes to print the “Hello World” statement:
Code:
import java.applet.Applet; import java.awt.Graphics; public class HelloWorld extends Applet { // Overriding paint() method @Override public void paint(Graphics g) { g.drawString("Hello World!!! Great to be here!!!", 150,150); } }
Output:
There are several advantages and disadvantages of running a Java applet.
Some of the advantages listed down are as follows:
The document can illustrate the non-use support and highlight some of the disadvantages of Applets. The disadvantages are:
In this article, we see the basic functions of an applet, the lifecycle of an applet, as well as some basic programs as to how an applet runs in the Java programming language. Developers can create and implement highly complex applets using software like BlueJ and other tools for HTML and CSS. We stress the theory part of applets more than the programming concept for applets.
以上是Java 小程式的詳細內容。更多資訊請關注PHP中文網其他相關文章!