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.
我是 Java 新手,遇到了一个小问题。有人可以告诉我,当我调整整个 JFrame 的大小时,如何将 JButton 的图像设置为在 JButton 中自动调整大小/适合/可拉伸?JButton 位于带有 GridLayout 的 JPanel 中。
如果有人能写一个简短的解释,那就太好了。我需要这个来完成我正在使用的计算器。
Image img = icon.getImage(); Image newimg = img.getScaledInstance(NEW_WIDTH, NEW_HEIGHT, java.awt.Image.SCALE_SMOOTH); icon.setImage(newimg);