import java.awt.Color;
import javax.swing.JFrame;
public class Test{
public static void main(String args[]){
JFrame f = new JFrame("第一个Swing窗体");
f.setSize(100,200);
f.getContentPane().setBackground(Color.blue);
f.setLocation(300,200);
f.setVisible(true);
}
}