您可以尝试以下几种方法:1-骇客:
public Myframe(){ Jframe temp = new Jframe; temp.pack(); Insets insets = temp.getInsets(); temp = null; this.setSize(new Dimension(insets.left + insets.right + 500, insets.top + insets.bottom + 500)); this.setVisible(true); this.setResizable(false);}2或将JPanel添加到框架的内容窗格中,然后只需将JPanel的首选/最小尺寸设置为500x500,请调用pack()
- 2-更便携



