从 android UIatomator 测试用例中读取 xml 文件

Read a xml file from android UIatomator test case

我想从 xml 文件加载测试用例到 UIatomator。然后我将传递 xml 文件并动态生成测试用例。但是我无法读取文件。我试过了this.getClass().getClassLoader().getResourceAsStream(resource); 加载文件但输入流变为空。 如何从 UIatomator 测试用例中读取一些文件?

这就是我获得输入流的方式。希望这对某人有用。

String file = "res/raw/<youfilename>.xml"; 
    InputStream ins = this.getClass().getClassLoader().getResourceAsStream(file);

那么这又是一个java输入流操作。