1

我的测试包看起来像

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

谢谢

4

1 回答 1

2

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

于 2013-09-22T02:49:44.423 回答