Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
None
Description
Some of the IOUtils and FileUtils test cases fail when the base path contains a space.
This is because the code uses URL#getFile() or URL#getPath() to convert a file: URL.
However those methods don't unencode spaces and other characters that are special to URLs.
The solution is to use URL#toURI() and pass the URI to the File() constructor.