[ 
https://issues.apache.org/jira/browse/HADOOP-14157?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16223743#comment-16223743
 ] 

Bruno Orsi Berton edited comment on HADOOP-14157 at 10/28/17 9:32 PM:
----------------------------------------------------------------------

Guys, I made a pull request to fix this in version 3.0.0. 

The patch provided by Simon Scott alters one test and the test is failing.
I created a new test and now is passing.

Could someone reviews this please?
Thanks.


was (Author: bberton):
Guys, I made a pull request to fix this in version 3.0.0. The problem with the 
patch of Simon Scott is that the changed test is failing.

> FsUrlStreamHandlerFactory "Illegal character in path" parsing file URL on 
> Windows
> ---------------------------------------------------------------------------------
>
>                 Key: HADOOP-14157
>                 URL: https://issues.apache.org/jira/browse/HADOOP-14157
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: fs
>    Affects Versions: 2.7.3, 2.6.5, 3.0.0-alpha2
>         Environment: Windows
>            Reporter: Simon Scott
>            Priority: Minor
>         Attachments: HADOOP-14157.001.patch
>
>
> After registering the FsUrlStreamHandlerFactory with the JVM, subsequent 
> calls to convert a "file" URL to a URI can fail with "Illegal character in 
> path" where the illegal character is a backslash.
> For example:
> {code}
> URL.setURLStreamHandlerFactory(new FsUrlStreamHandlerFactory());
> File file = new File("C:/Users");
> final URL url = new URL("file:///" + file.getAbsolutePath());
> {code}
> gives stack trace:
> {noformat}
> java.net.URISyntaxException: Illegal character in path at index 8: 
> file:/C:\Users
>     at java.net.URI$Parser.fail(URI.java:2848)
>     at java.net.URI$Parser.checkChars(URI.java:3021)
>     at java.net.URI$Parser.parseHierarchical(URI.java:3105)
>     at java.net.URI$Parser.parse(URI.java:3053)
>     at java.net.URI.<init>(URI.java:588)
>     at java.net.URL.toURI(URL.java:946)
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to