jframe in java example

Example 1: java simple jframe example

import javax.swing.*;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.*;
 
public class JFrameExample{
     
    public static void main(String[] args){
        // Create frame with title Registration Demo
        JFrame frame= new JFrame(); 
        frame.setTitle("JFrame Demo");
        frame.pack();
        frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }
}

Example 2: how to create a java jframe

JFrame frame = new JFrame("Test Frame");
 frame.setSize(500,400);
 frame.setVisible(true);
 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

Tags:

Java Example