-1
我想爲我編寫的這個數學練習程序建立一個工具欄。我試圖從名爲圖像的文件夾中獲取圖像。它不會允許我。它給了我一個NullPointerException異常,我將用Exception指向的*來標記行。我得到一個nullPointerException在我的URL鏈接
public JButton makeNavigationButton(String imageName, String toolTipText) {
String imgLocation = "images/" + imageName + ".jpg";
URL imageURL = MathPractice.class.getResource(imgLocation);
JButton button = new JButton();
button.setToolTipText(toolTipText);
//button.addActionListener(this);
button.setIcon(new ImageIcon(imageURL)); //************* NPE here
return button;
}
你認爲所有的代碼是相關的嗎?不要讓我們的生活變得困難。 –
可能不是大聲笑 – user278153
修好了,希望它足以找到答案。 – user278153