GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Sunday, December 19, 2010

Java Desktop Application

This is the most simple desktop application using Java:

import javax.swing.JFrame;

public class Main{

    public static void main(String[] args){
    
        JFrame frame = new JFrame("A Desktop Application");
        frame.setSize(400, 300);
        frame.setLocation(200, 100);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }
}
 
Share/Bookmark

No comments:

Post a Comment