Posts

Image
  Java Swing Tutorial Java Swing tutorial 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. Difference between AWT and Swing There are many differences between java awt and swing that are given below. No. Java AWT Java Swing 1) AWT components are platform-dependent . Java swing components are platform-independent . 2) AWT components are heavyweight . Swing components are lightweight . 3) AWT doesn't support pluggable look and feel . Swing supports pluggable look and feel .