目前我将硬编码的字符串文件位置传递给我的对象方法,该方法使用.getResources()
方法中的字符串来加载图像文件。我现在尝试使用加载按钮选择图像,并将加载的文件位置作为字符串传递到getResource()
方法。我使用filename.getAbsolutePath()
方法检索文件位置,然后将filename
变量传递给对象方法,但这会给我带来以下错误 -
线程"AWT-EventQueue-0" java.lang.NullPointerException.
中的异常
它指向出错的代码行是加载图像的.getResources
行。我将发布以下代码以更好地理解我的问题。
btnLoad.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JFileChooser fc = new JFileChooser();
if (fc.showOpenDialog(null) == JFileChooser.APPROVE_OPTION)
{
File loadImage = fc.getSelectedFile();
String filename = loadImage.getAbsolutePath();
filename = filename.replaceAll("\\\\", "\\\\\\\\");
picLocation = filename;
ImageSwing imageSwing = new ImageSwing(filename);
System.out.println(filename);
}
}
文件名的输出是正确的,但它仍然不会传递到对象中。
public class ImageSwing extends JFrame
{
public JLabel label;
public ImageSwing(String S){
super("Card Stunt"); //Window Title
setLayout(new FlowLayout()); //lookup grid layout
Icon flag = new ImageIcon(getClass().getResource(S));
label = new JLabel(flag);
label.setToolTipText(S);
setSize(1350, 800);
//setMinimumSize(new Dimension(1200, 760));
}//main
}
答案 0 :(得分:1)
您似乎使用loadImage.getAbsolutePath()
创建了绝对文件名,但之后尝试将其用作class path resource new ImageIcon(getClass().getResource(S))
。
相反,您应该将绝对文件名作为字符串传递给ImageIcon
:
Icon flag = new ImageIcon(S);
另外,不要忘记将标签添加到框架中......
getContentPane().add(label);
另外,我现在不在Windows上,但我不认为filename.replaceAll("\\\\", "\\\\\\\\");
是必要的。