what is java swing?
 
Notifications
Clear all

what is java swing?

3 Posts
4 Users
1 Likes
312 Views
0
Topic starter

what is java swing?

3 Answers
1
 
Swing in java is part of Java foundation class which is lightweight and platform independent. It is used for creating window based applications.
0

Java Swing is a part of Java Foundation Classes (JFC) that is used to create window-based applications. It is built on the top of AWT (Abstract Windowing Toolkit) API and entirely written in java.

Unlike AWT, Java Swing provides platform-independent and lightweight components.

The javax.swing package provides classes for java swing API such as JButton, JTextField, JTextArea, JRadioButton, JCheckbox, JMenu, JColorChooser etc.

0

Java Swing is a user interface (UI) toolkit for building desktop applications in Java. It provides a set of graphical user interface components like buttons, menus, text fields, labels, and more that can be used to create rich and interactive desktop applications. Swing is a part of the Java Foundation Classes (JFC) and is built on top of the Abstract Window Toolkit (AWT). It offers a rich set of features like customizable look and feel, pluggable UI, drag and drop support, and more. Swing also provides support for internationalization and accessibility, making it a powerful and versatile tool for building desktop applications in Java.

Share: