我的测试包看起来像

test/
    java/
        com/
           algos/
                graphs/
                      GraphTest.java
    resources/
             graphs/
                   tinyG.txt


GraphTest尝试读取tinyG如下

@Test
public void testTinyG() throws IOException {
    final Graph g = new Graph(getBufferedReaderFor("tinyG.txt"));
    System.out.println(g.toString());
}

private static BufferedReader getBufferedReaderFor(final String filename) {
    return new BufferedReader(new InputStreamReader(GraphTest.class.getResourceAsStream("/graphs/" + filename)));
}


它以NullPointerException失败

GraphTest.class.getResourceAsStream("/graphs/" + filename)


返回null

我在这里做错了什么?

tinyG具有类似的数据

13
13
0 5
4 3
0 1
9 12
6 4
5 4
0 2


谢谢

最佳答案

Eclipse为项目运行JUnit测试时,通常会使用项目的工作目录启动测试。因此,要从类路径访问tinyG.txt,必须使用路径/test/resources/graphs/tinyG.txttinyG.txt工作的唯一方法是使其与.class文件位于同一目录中。

07-25 22:46