我在阅读xml文件时遇到以下问题,当使用下面的dirFile时,我收到以下错误:
C:\ Folder \ folder1 \ folder2 \ project \ resources \ xmls \ file.xml(系统找不到指定的路径)
并且文件在那里,并且提到的路径是正确的。但是,如果我使用此路径,它曾经是C:\ repo \ eclipse \ testcases \ file.xml工作。我想在项目中使用xml。
private static String dirFile = "resources/xmls/";
DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
Document doc = docBuilder.parse(dirFile + file);
任何帮助都会受到赞赏。
答案 0 :(得分:1)
如果您收到错误:C:\Folder\folder1\folder2\project\resources\xmls\file.xml (The system cannot find the path specified)
这意味着以下两件事之一:
您应该通过转到资源管理器中的文件并右键单击该文件来仔细检查绝对路径,然后进入属性。确保所有目录都正确并且顺序正确。