Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 40549 invoked from network); 28 Apr 2007 10:28:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Apr 2007 10:28:37 -0000 Received: (qmail 64799 invoked by uid 500); 28 Apr 2007 10:28:43 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 64765 invoked by uid 500); 28 Apr 2007 10:28:43 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 64752 invoked by uid 99); 28 Apr 2007 10:28:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Apr 2007 03:28:43 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Apr 2007 03:28:35 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id AFAF9714083 for ; Sat, 28 Apr 2007 03:28:15 -0700 (PDT) Message-ID: <26428846.1177756095717.JavaMail.jira@brutus> Date: Sat, 28 Apr 2007 03:28:15 -0700 (PDT) From: "Kelvin Ye (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-3656) [classlib][luni] File.mkdir does not support unicode In-Reply-To: <4416177.1176701475521.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-3656?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kelvin Ye updated HARMONY-3656: ------------------------------- Attachment: (was: harmony-3656.diff) > [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 > > 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.