Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这就是我运行 jframe 预览时发生的情况
我该如何解决这个问题?谢谢
您可以使用setSize(width,height)和setLocation(x,y)方法来设置 JFrame 的所需大小和位置。
setSize(width,height)
setLocation(x,y)
或者
只需pack()在调用 JFrame 之前调用setVisible(true)它。
pack()
setVisible(true)
但正如 MadProgrammer 所建议的,使用一些布局和布局管理器总是更好。
设置jframe的大小
jframe.setSize(width,height);