Java에서 개발자는 애플릿 개념을 사용하여 웹 브라우저와 페이지를 원활하게 결합하여 특정 출력을 생성할 수 있습니다. Java의 애플릿은 간단한 애플릿부터 매우 복잡한 애플릿까지 다양합니다. 간단한 Hello World 애플릿을 사용하면 기본 Java 애플릿이 어떻게 작동하고 화면에 표시될 수 있는지 확인할 수 있습니다. 이 기사에서는 기본 Java 애플릿과 다양한 실제 문제를 해결하는 데 광범위하게 사용되는 또 다른 Java 애플릿을 살펴보겠습니다. Java 애플릿은 Python, Dot Net 및 기타 코드와 같은 여러 다른 프로그래밍 언어로 구현될 수 있습니다.
이 단계에서는 애플릿의 수명주기를 관찰합니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
애플릿 수명 주기에는 5가지 기본 단계가 있습니다.
이 5단계의 역할을 살펴보겠습니다.
애플릿이 실행될 때마다 여러 함수를 순차적으로 호출하여 주요 목표를 결정하고 여러 출력을 생성합니다.
애플릿은 다음 함수를 순차적으로 호출합니다.
아래에서는 Java로 작성된 몇 가지 애플릿의 예를 제공합니다.
코딩 예제에서는 Hello World 애플릿의 기본 버전을 볼 수 있습니다. 아래 그림은 BlueJ Java 프로그래밍 플랫폼의 필수 애플릿인 Hello World의 표현을 보여줍니다.
애플릿을 실행하려고 할 때마다 애플릿은 다양한 옵션 중에서 선택할 수 있는 다양한 옵션을 보여주는 아래 화면을 제공합니다. 아래 화면에서는 웹 페이지를 생성하거나, 애플릿 뷰어에서 애플릿을 실행하거나, 웹 브라우저에서 애플릿을 실행할 수 있습니다. BlueJ 프로그래밍 플랫폼에서 애플릿을 실행하기 위한 여러 옵션을 제공했습니다. 애플릿의 높이와 너비도 상자에 제공할 수 있으며, 제공된 높이와 너비에 따라 애플릿이 실행되어 다양한 문제에 대한 솔루션을 제공하는 고유한 애플릿을 만듭니다.
이제 Hello World 샘플 코드를 제시하기 위한 샘플 코딩 및 가져오기 패키지의 예를 살펴보겠습니다. 이 프로그램에서는 Applet 및 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!