You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Hongyuan Li (JIRA)" <ji...@apache.org> on 2017/05/27 14:49:04 UTC

[jira] [Created] (HADOOP-14462) In hadoop Path class, it is assocaited with java,net.URI, sometimes will boring

Hongyuan Li created HADOOP-14462:
------------------------------------

             Summary: In hadoop Path class, it is assocaited with java,net.URI, sometimes will boring
                 Key: HADOOP-14462
                 URL: https://issues.apache.org/jira/browse/HADOOP-14462
             Project: Hadoop Common
          Issue Type: Wish
            Reporter: Hongyuan Li


[~stevel@apache.org] [~brahmareddy] 
method {{ new Path(String pathString) }} used java.net.URI  {{public URI(String scheme,
               String authority,
               String path, String query, String fragment)}} method, in which %25 may converted to %2525. for example, test like below won't pass.
{code}
String uriString = "ftp://aaaa:%20112@nodee1/";
 URI uri = new URI(uriString );  
Path path1 = new Path(uri);
Path path2 = new Path(uriString);
assertEquals(path1, path2);
{code}
Any good idea to solve this ? 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-dev-help@hadoop.apache.org