我目前正在尝试开发一款游戏,当我导出它时,文件路径会发生变化。
以下是代码:
package random;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
public class Troll extends JFrame{
/**
*
*/
private static final long serialVersionUID = 4176461585360667597L;
public static BufferedImage img;
public static void main(String[] args){
File f = new File("troll.png");
try{
if(f.exists()){
System.out.println("ITS THERE! :D");
img = ImageIO.read(f);
} else {
System.out.println("DOESNT EXIST, REAL PATH IS: " + f.getAbsolutePath() );
}
}catch(Exception e){
e.printStackTrace();
}
new Troll();
}
public Troll(){
init();
}
public void init(){
setSize(1200,800);
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null);
}
public void paint(Graphics g){
g.drawImage(img, 500, 350, this);
}
}
当我通过Eclipse(我正在使用的IDE)运行它时,它正常运行并显示图像。当我将它作为jar导出并使用Jar2Exe软件将其转换为exe时,图像不会出现,并且在控制台中它表示图像的绝对路径在我的桌面上。但是当我使用7-Zip打开exe时,图片就在exe中。
如何导出它,以便当用户运行它时,程序可以找到文件路径并显示图像,而不是认为它在我的桌面上?
答案 0 :(得分:2)
如果要将其作为jar发布,则需要使用特定于Jar的API来读取文件。见例如。 How to read a file from a jar file?(并且您需要配置Eclipse以将图片放入jar中,这听起来像您已经在做的那样)。
此外,您应该告诉我们它是否适用于罐子而不是作为exe,这将有助于我们缩小问题的范围。
答案 1 :(得分:1)
我希望这不是一个巨魔(笑)
img = ImageIO.read(this.getClass().getResource("/troll.jpg"));
你在一个罐子里,没有资源文件。
也可以看到该链接:http://www.jar2exe.com/createdexe/integrate/protect
Thread.currentThread().getContextClassLoader().getResource("hello/yes.gif");