public class TestJCalendar {public static void main(String[] args) {
JFrame f=new JFrame();f.setUndecorated(true);f.getContentPane().add(new JCalendar());f.setResizable(false);f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);f.setVisible(true);
}}其中JCalendar()是一个继承了JPanel的类