要创建一个JFrame窗口,您可以按照以下步骤进行:
import javax.swing.JFrame;
JFrame frame = new JFrame("My Frame");
frame.setSize(400, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null); // 将窗口置于屏幕中央
frame.setVisible(true);
// 创建一个按钮
JButton button = new JButton("Click me");
// 将按钮添加到窗口中
frame.add(button);
public static void main(String[] args) {
JFrame frame = new JFrame("My Frame");
frame.setSize(400, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
// 添加其他组件
frame.setVisible(true);
}
通过这些步骤,您就可以创建一个简单的JFrame窗口并在其中添加其他Swing组件。您可以根据需要自定义窗口的外观和功能。