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/06/21 05:34:26 UTC

[jira] Resolved: (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 resolved HARMONY-3656.
----------------------------------

    Resolution: Fixed

Sorry for the delay, patch applied at r549346 with a little modifications to make the FileTest for windows compile. Kelvin, thanks a lot, please verify.

> [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
>            Assignee: Paulex Yang
>         Attachments: harmony-3656.zip
>
>
> 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.