answersLogoWhite

0


Best Answer

An applet is a Java program embedded in an HTTP document. When the HTTP document is loaded into a web browser, the Java program executes on the web. A widget = window gadget, a GUI (graphical user interface) control. A GUI control, such as a command button, is accessed by the user via a mouse click or by the keyboard. GUI programs can run on one's PC.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

applet is for browsers like firefox, chrome or IE

"well, An applet is a program written in the Java programming language that can be included in an HTML page, much in the same way an image is included in a page. When you use a Java technology-enabled browser to view a page that contains an applet, the applet's code is transferred to your system and executed by the browser's Java Virtual Machine (JVM). For information and examples on how to include an applet in an HTML page, refer to this description of the <APPLET> tag.

The difference between the applet and swing is as mentioned below:

1.Applets are Java programs which are capable of being run within a browser. Swing is a GUI framework.

2. Applet belongs to java.awt package and swing belongs to javax.swing.* package.

3. Applet is a heavy weight component but swing comes under light weight component's category.

4.Swing is a set of classes under JFC that provide lightweight visual component , enable creation of attractive GUI. But Applet is heavyweight component and needs web browser or tool known as AppletViewer."

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

here are ways of retrieving user-defined property values both at applets and midlets.

The J2SE java.applet.Applet class provides the method public String getParameter(String name).

Parameters are defined at the applet's HTML file.

Example: if the applet is specified as

then a call to getParameter("user") returns the value "Enoch Root".

The J2ME javax.microedition.midlet.MIDlet class provides a similar method: public final String getAppProperty(String key).

It returns the value for the specified key from either its .jad file or the manifest file in the .jar file.

If the same key exists in both places, the value from the Java Application Descriptor (.jad) is returned.

Example: if there is a property

user: Enoch Root

then a call to getAppProperty("user") returns the value "Enoch Root".

If no value exists then both applet and midlet methods return null (note: in case of applets the name argument is case insensitive).

These values can be used to customize an application behavior without the need for recompilation.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

an applet runs on a java compatible web browser an application runs on a stand alone computer.

applets do not have main methods while applications execution start with main method

applets are small programs applications are large programs

applets are designed for handling the clients site problems while java applications are designed to work with clients as well as server.

applications are designed to exist in a secure ares while applets are typically used

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

A Java Applet is a class which is intended to be run from within a web browser. Java Swing is an entire package of classes and interfaces which is dedicated to providing a comprehensive collection of GUI elements.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

The major difference between an applet and a widget is that a widget has a host software system. An applet is an application.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is difference between java applet and java Swing?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is an important difference between writing a Java application and a Java applet?

A Java applet is embedded within a web page, while a Java application will run directly on your computer.


What is the difference between heavy weight and lightweight programing language in java script?

Applet is a heavy component,Applet uses AWT Layouts..like flow layout,Swing is a light weight component, Using UI Manager, swing have look and feel according


What are the advantages of java swing over java applet?

I think you may have your terminology off a bit.javax.swing is a Java package of graphical user interface (GUI) classes.An Applet is a class designed to be embedded in a web browser.Among the classes in the Swing package is JApplet, which is an Applet extended to work with Swing components.There really is no "advantage" of one thing over the other. They are just different, if related, parts of Java.


Differences between Java Applet and Java Beans?

Java applet is a program used to run java applications while beans is a compiler used to design java programs (IDE, GUI) :-) GilbertC


When an applet become an applet?

Any Java class that extends java.applet.Applet is an applet. http://java.sun.com/j2se/1.5.0/docs/api/java/applet/Applet.html


What is the DOS command applet?

There is nothing called DOS applet.. You can run Java applet from DOS..


What is a Java applet?

PCH answer small Embedded Java Program.


Differniate between applet and servlet in java?

Applet: It is run on browser, i mean client side. Servlet: It is run on server, i mean server side.


What is the difference between swing and swing events?

Java Swings is a technology that is used to create User Interface Components using Java. Swing Events are a part of this technology that is used to handle user actions like click of a button or closing the component etc


Small Java-based programs are called?

Java applets


Differentiate Java applet and Java servlet?

Java Applet is an application designed to transmit on internet to execute on java compatible browsers. Java Servlet is a server side program used to provide services to clients.


What is the file extension of an applet?

An applet is a Java application, this saves files in a .class extension