You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Richard Liang (JIRA)" <ji...@apache.org> on 2006/10/30 11:13:17 UTC

[jira] Updated: (HARMONY-1999) [classlib][luni] Bug of java.net.URL.toExternalForm

     [ http://issues.apache.org/jira/browse/HARMONY-1999?page=all ]

Richard Liang updated HARMONY-1999:
-----------------------------------

    Attachment: Harmony-1999.diff

Hello,

Would you please try this patch? Thanks a lot.

Best regards,
Richard.

> [classlib][luni] Bug of java.net.URL.toExternalForm
> ---------------------------------------------------
>
>                 Key: HARMONY-1999
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1999
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Richard Liang
>         Attachments: Harmony-1999.diff
>
>
> Hello,
> There are something wrong in java.net.URL.toExternalForm. The following test case could demonstrate this problem.
> public void test_toExternalForm_Absolute() throws MalformedURLException {
>         String strURL = "http://localhost?name=value";
>         URL url = new URL(strURL);
>         assertEquals(strURL , url.toExternalForm());
>     }
>     
>     public void test_toExternalForm_Relative() throws MalformedURLException {
>         String strURL = "http://a/b/c/d;p?q";
>         String ref = "?y";
>         URL base = new URL(strURL);
>         URL url = new URL(base,ref);
>         assertEquals("http://a/b/c/?y", url.toExternalForm());
>     }
> I will try to provide a patch soon ;-) Thanks a lot.
> Best regards,
> Richard

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira