没那么复杂 JButton button = new JButton(name,new ImageIcon(getClass().getResource(url))); //name表示字符串 //url 表示图片路径 java里面加载资源一般都用通过反射 button.setHorizontalTextPosition(JButton.CENTER); button.setVerticalTextPosition(JButton.BOTTOM);