You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Paulex Yang (JIRA)" <ji...@apache.org> on 2007/04/16 10:01:33 UTC

[jira] Assigned: (HARMONY-3656) [classlib][luni] File.mkdir does not support unicode

     [ https://issues.apache.org/jira/browse/HARMONY-3656?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paulex Yang reassigned HARMONY-3656:
------------------------------------

    Assignee: Paulex Yang

> [classlib][luni] File.mkdir does not support unicode
> ----------------------------------------------------
>
>                 Key: HARMONY-3656
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3656
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Windows XP
>            Reporter: Kelvin Ye
>         Assigned To: Paulex Yang
>         Attachments: harmony-3656.diff
>
>
> The following code can successfully create the dir on RI, but fail on Harmony.
> Code:
> public class test1 {
>     public static void main(String[] args) {
>         String base = System.getProperty("user.dir");
>         String ss = "dir\u3400";
>         try {
>             File dir = new File(base, ss);
>             dir.deleteOnExit();
>             if (dir.mkdir() && dir.exists() 
>                     && dir.getCanonicalPath().equals(base + File.separator + ss)) {
>                 System.out.println("Create Successfully.");
>             }
>             else {
>                 System.out.println("Create Failed.");
>             }
>         } catch (IOException e) {
>         }
>     }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.