我正在使用一些 API,其中有一个类 Reader,它有一个方法 readXml(String path)
现在当我使用这种方法并给出一些在我的计算机中的路径时
Reader reader = new Reader();
reader.readXml("C:\\work\\myfile.xml");
它总是无法读取文件
在API文档中提到了
readXml(java.lang.String resourcePath)
Loads the orthography model, from the specified embedded JAR resource.
所以我需要将我的文件放在一些嵌入式 jar 资源中吗,如果是的话,这样做的方式是什么,然后从中读取
谢谢