1

我正在使用 Play Framework 2.0。在我的一个测试用例中,我想阅读一些 XML/HTML 文件的内容。我试过:

getClass().getResource("SomeFile.xml");

getClass().getResourceAsStream("SomeFile.xml");

但我得到一个空值。资源在我的测试用例的同一个包中。在此处输入图像描述

4

1 回答 1

1

也许你可以试试这个方法:

/**
 * Retrieves a resource stream from the classpath.
 *
 * @param relativePath relative path of the resource to fetch
 * @return InputStream to the resource (may be null)
 */
play.Play.application().resourceAsStream(String resourceName)
于 2012-04-04T07:30:23.053 回答