이봐, 내가 올바른 작업 공간 폴더 (SRC)에 내 이미지를 이동 한하지만 난이 오류 메시지가 계속 ..... 자바 JButton의 이미지
이
Exception in thread "main" java.lang.NullPointerException
at javax.swing.ImageIcon.<init>(Unknown Source)
at GUI.<init>(GUI.java:20)
at main.main(main.java:4)
코드입니다
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import java.awt.FlowLayout;
public class GUI extends JFrame {
private JButton reg;
private JButton custom;
public GUI(){
super("Welcome");
setLayout(new FlowLayout());
reg = new JButton("reg button");
add(reg);
Icon b = new ImageIcon(getClass().getResource("b.png"));
Icon a = new ImageIcon(getClass().getResource("a.png"));
custom = new JButton("Custom", b);
custom.setRolloverIcon(a);
add(custom);
thehandler handle = new thehandler();
reg.addActionListener(handle);
custom.addActionListener(handle);
}
private class thehandler implements ActionListener{
public void actionPerformed(ActionEvent event){
JOptionPane.showMessageDialog(null, String.format("%s", event.getActionCommand()));
}
}
}
-----------------------
import javax.swing.JFrame;
public class main {
public static void main(String agrs[]){
GUI page = new GUI();
page.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
page.setSize(300,200);
page.setVisible(true);
}
}
''/b.png ''시도하셨습니까? – sanbhat
0 다운로드 \t 이미지 파일 이름과 함께 src 폴더의 전체 경로 이름을 지정하십시오. –
아니요 작동하지 않았습니다. 어쨌든 고마워. :-) –