3

我遇到了无法通过 Java 找到图像的问题。我和我的朋友正在做一个项目,我们做了完全相同的事情。我已经更改了图像位置的路径,甚至将图像拖放到 Eclipse 中。然而,我没有运气。这是我的代码:

import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.Image;
import java.awt.Insets;
import java.awt.Toolkit;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Map;

import javax.swing.ImageIcon;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;


public class MapArray {
    static JPanel[][] tiles = new JPanel[30][29];
    static String[][] images = new String[30][30];
    final static int SIZE = 30;
    static int place=0;

public MapArray(){

}

protected static ImageIcon createImageIcon(String path) {
    java.net.URL imgURL = Map.class.getResource(path);
    if (imgURL != null) {
        return new ImageIcon(imgURL);
    } else {
        System.err.println("Couldn't find file: " + path);
        return null;
    }
}

public static void setMap(){

    try {
        String a = getFileContents("C:\\Users\\*****\\workspace\\Pokemon\\src\\map1.txt");
        for(int x=0; x<29; x++){
            for(int y=0; y<30; y++){
                images[x][y]=a.substring(0,a.indexOf(" "));
                a=a.substring(a.indexOf(" ")+1);
                System.out.println(images[x][y]);
            }
        }
    } catch (Exception e) {
        System.out.println("y u no work :(");
    }

}

public static String getFileContents(String fileName) throws Exception {
    File theFile = new File(fileName);
    byte[] bytes = new byte[(int) theFile.length()];
    InputStream in = new FileInputStream(theFile);
    int m = 0, n = 0;
    while (m < bytes.length) {
        n = in.read(bytes, m, bytes.length - m);
        m += n;
    }
    in.close();
    return new String(bytes); 
}

public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {

        @Override
        public void run() {
            setMap();
            JFrame frame = new JFrame();
            frame.setLayout(new GridLayout(30, 29, 0, 0));
            for (int i = 0; i < 29; i++) {
                for (int j = 0; j < 29; j++) {
                    tiles[i][j] = new JPanel(new GridLayout());
                    tiles[i][j].add(new JLabel(
                            createImageIcon("C:\\Users\\*****\\workspace\\Pokemon\\src\\tile"+"-"+images[i][j]+".png")));
                    frame.add(tiles[i][j]);
                }
            }
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setVisible(true);
        }
    });
}


}

我尝试放入完整图像路径的所有方法都不起作用。另外,任何人都可以提供相对路径的帮助吗?我和我的朋友将在多台计算机之间共享代码,因此非专用于我们工作区所在位置的相对路径会很棒。谢谢!

4

4 回答 4

2
// get resource of *your* class, instead of Java's Map.class
MapArray.class.getResource(path);
...
String a = getFileContents("map1.txt"); // local path, not absolute

并将文件放在src文件旁边的MapArray.java文件夹中。

src/
 |-- MapArray.java
 |-- ...
 `-- map1.txt

map1.txt将被移动到文件bin旁边的目录中.class(bin/ 默认情况下隐藏在 Eclipse 中,但这是设置类路径的位置)。稍后您还需要确保将资源文件打包到.jar.

于 2012-04-05T17:20:17.123 回答
1

您可以从一个简单的代码片段开始(我忽略导入,......因为我懒得启动我的 IDE),而不是发布一大堆代码并且不指定您在问题中收到的错误消息

public static void main( String[] args ){
  File file = new File( "C:...");//with the path you use in your code
  System.out.println( file.exists() );
}

这是关于您发现/调试问题所需的内容。然后您可以开始将其转换为相对路径。

于 2012-04-05T17:59:39.040 回答
1

如果资源本质上是应用程序的一部分。(嵌入式应用程序资源)而不是用于写入,它们应该添加到应用程序运行时类路径上的 Jar 中,并通过从Class.getResource(). 它会像这样工作:

URL urlToMap1 = this.getClass().getResource("/src/map1.txt");

您需要检查资源最终到达的 Jar 中的确切路径,并从 Jar ( ) 的根目录中引用它,然后是 Jar ( /) 中的路径src/map1.txt

于 2012-04-05T18:44:01.130 回答
1

有人可以帮助解决相对路径吗?

String a = getFileContents("./src/map1.txt");
于 2012-04-05T16:46:43.700 回答