我使用JFrame
/ JPanel
创建了一个小的“hello world”应用程序,它在我的IDE(Netbeans)中完美运行。我只是使用Graphics.drawString()
在屏幕上绘制一个字符串来测试它,它在浏览器和构建的.Jar文件中都能很好地工作。
我决定添加一个图像只是为了测试它(我是Java的新手),并且App继续在IDE中运行,但是内置的.Jar文件没有启动任何东西,或者给出了错误或任何东西。
以下是2个类文件:
Boxy_Main.java:
package boxy;
import javax.swing.JFrame;
import java.awt.*;
public class Boxy_Main extends JFrame {
public static Boxy_Main main;
public Boxy_Main() {
add(new Board());
setTitle("Boxy");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(467, 700);
setLocationRelativeTo(null);
setVisible(true);
setResizable(true);
}
public static void main(String[] args) {
main = new Boxy_Main();
}
}
Board.java:
package boxy;
import javax.swing.JPanel;
import java.awt.*;
import javax.swing.*;
public class Board extends JPanel {
public Graphics2D g2d;
public Graphics g;
public Image hello_image;
public Board() {
this.set_properties();
}
public void set_properties() {
this.hello_image = new ImageIcon(Board.class.getResource("../images/LKRZV.jpg")).getImage();
}
public void paint(Graphics g) {
this.g = g;
this.g2d = (Graphics2D) g;
this.g2d.drawImage(this.hello_image, null, this);
this.g.drawString("hello", 100, 80);
this.g.drawString("world", 100, 94);
}
}
如果我发表评论
this.hello_image = new ImageIcon(Board.class.getResource("../images/LKRZV.jpg")).getImage();
和
this.g2d.drawImage(this.hello_image, null, this);
它继续完美运作。
我自己试图解决这个问题,我无法通过谷歌或堆栈溢出找到任何东西。这是一个难以驾驭的搜索短语。
任何人都有任何想法为什么会在NetBeans中运行,但不能作为独立的.Jar?
答案 0 :(得分:5)
您的问题就在这一行
this.hello_image = new ImageIcon(Board.class.getResource("../images/LKRZV.jpg")).getImage();
当您在NetBeans中运行时,“../ image.LKRZV.jpg”路径是正确的,但是在运行JAR时它是不正确的。确保提供相对于jar文件位置正确的路径。如果将该路径更改为图像的绝对路径,则程序应该可以正常工作。用罐子包装图像可能会更好。