要创建一个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组件。您可以根据需要自定义窗口的外观和功能。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: idea中jersey的使用方法是什么