通常使用时...
Transformer t = TransformerFactory.newInstance().newTransformer();
t.transform(source,result);
(没有 xmlparserv2.jar 文件)File Not Found Exception 看起来像这样。
Exception in thread "main" java.io.FileNotFoundException: C:\Documents and Settings\username\nonExistentFile.xml (The system cannot find the file specified)
当您包含 xmlparserv2.jar 时,异常变为此
Caused by: java.io.FileNotFoundException: C:\Documents%20and%20Settings\username\existingFile.xml (The system cannot find the path specified)
该文件实际上是存在的(当我不包含 jar 时,转换方法会找到它)但是当我包含 jar 时,由于为空白插入了 %20,因此转换方法无法找到它。有人可以告诉我如何解决这个问题吗?