Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 51233 invoked from network); 16 Apr 2007 05:37:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Apr 2007 05:37:36 -0000 Received: (qmail 73071 invoked by uid 500); 16 Apr 2007 05:37:42 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 73047 invoked by uid 500); 16 Apr 2007 05:37:42 -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 73038 invoked by uid 99); 16 Apr 2007 05:37:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Apr 2007 22:37:42 -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; Sun, 15 Apr 2007 22:37:35 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7E5BC71406C for ; Sun, 15 Apr 2007 22:37:15 -0700 (PDT) Message-ID: <18153595.1176701835515.JavaMail.jira@brutus> Date: Sun, 15 Apr 2007 22:37: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: ------------------------------- Patch Info: [Patch Available] > [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 > 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.