我終於完成了我的遊戲,我想將它分發給幾個朋友,我唯一的問題是我可以將它變成可運行的jar文件,並且它在我的筆記本電腦上工作得很好,但是當我在網上上傳照片並向其他人發送鏈接時,當他們下載圖像時,圖像就不存在了。我尋找解決方案,但是我遇到的那些我根本聽不懂,有人可以向我解釋一下嗎? :3讓我的遊戲帶有圖片的罐子
以下是我的代碼中的所有圖片。
遊戲類
Graphics2D g2d = (Graphics2D) g;
ImageIcon ic= new ImageIcon ("D:/USER/Desktop/Other/Snow.jpg");
g2d.drawImage(ic.getImage(),0,0,null);
用戶類
public Image useriamge(){
ImageIcon icon = new ImageIcon("D:/User/Desktop/Other/us.png");
return icon.getImage();
障礙類
ImageIcon icon = new
ImageIcon("D:/User/Desktop/Other/ob.png");
return icon.getImage();
主類
final JFrame Starting_menu = new JFrame ("Game");
ImagePanel background = new ImagePanel("D:/USER/Desktop/Other/Snow.jpg");
Starting_menu.add(background);
final JFrame Help_screen = new JFrame ("Help menu");
ImagePanel background2 = new ImagePanel("D:/USER/Desktop/Other/HelpScreen.jpg");
Help_screen.add(background2);