Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 39194 invoked from network); 3 Oct 2007 15:46:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Oct 2007 15:46:36 -0000 Received: (qmail 85189 invoked by uid 500); 3 Oct 2007 15:45:31 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 85175 invoked by uid 500); 3 Oct 2007 15:45:30 -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 85164 invoked by uid 99); 3 Oct 2007 15:45:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Oct 2007 08:45:30 -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; Wed, 03 Oct 2007 15:45:41 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D3AE871417D for ; Wed, 3 Oct 2007 08:44:50 -0700 (PDT) Message-ID: <32154608.1191426290862.JavaMail.jira@brutus> Date: Wed, 3 Oct 2007 08:44:50 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-4896) [classlib] Classes can't be loaded from a cyrillic path In-Reply-To: <11659716.1191423350593.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-4896?page=3Dcom.atlass= ian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vasily Zakharov updated HARMONY-4896: ------------------------------------- Description:=20 If the class file is located in a directory whose name contains cyrillic ch= aracters, that class can't be loaded. Reproducer: public class Test { public static void main(String[] args) throws Exception { System.out.println("SUCCESS"); } } Create a cyrillic directory, put the reproducer there, go to that directory= and run: C:\=D1=82=D0=B5=D1=81=D1=82> java Test Output on RI: SUCCESS Output on IBM VME: FAILED to invoke JVM. Output on DRLVM: Uncaught exception in main: java.lang.NoClassDefFoundError: Test Caused by: java.lang.ClassNotFoundException: Test at java.net.URLClassLoader.findClass(URLClassLoader.java:894) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader$SystemClassLoader.loadClass(Unknown Source= ) at java.lang.ClassLoader.loadClass(Unknown Source) FAILED to invoke JVM. I suspect this is a classlib issue, as it occurs on both DRLVM and IBM VME. was: If the class file is located in a directory whose name contains cyrillic ch= aracters, that class can't be loaded. Reproducer: public class Test { public static void main(String[] args) throws Exception { System.out.println("SUCCESS"); } } Create a cyrillic directory, put the reproducer there, go to that directory= and run: C:\=D1=82=D0=B5=D1=81=D1=82> java Test Output on RI: SUCCESS Output on DRLVM: Uncaught exception in main: java.lang.NoClassDefFoundError: Test Caused by: java.lang.ClassNotFoundException: Test at java.net.URLClassLoader.findClass(URLClassLoader.java:894) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader$SystemClassLoader.loadClass(Unknown Source= ) at java.lang.ClassLoader.loadClass(Unknown Source) FAILED to invoke JVM. Output on IBM VME: FAILED to invoke JVM. I suspect this is a classlib issue, as it occurs on both DRLVM and IBM VME. > [classlib] Classes can't be loaded from a cyrillic path > ------------------------------------------------------- > > Key: HARMONY-4896 > URL: https://issues.apache.org/jira/browse/HARMONY-4896 > Project: Harmony > Issue Type: Bug > Components: Classlib > Environment: Windows XP > Reporter: Vasily Zakharov > > If the class file is located in a directory whose name contains cyrillic = characters, that class can't be loaded. > Reproducer: > public class Test { > public static void main(String[] args) throws Exception { > System.out.println("SUCCESS"); > } > } > Create a cyrillic directory, put the reproducer there, go to that directo= ry and run: > C:\=D1=82=D0=B5=D1=81=D1=82> java Test > Output on RI: > SUCCESS > Output on IBM VME: > FAILED to invoke JVM. > Output on DRLVM: > Uncaught exception in main: > java.lang.NoClassDefFoundError: Test > Caused by: java.lang.ClassNotFoundException: Test > at java.net.URLClassLoader.findClass(URLClassLoader.java:894) > at java.lang.ClassLoader.loadClass(Unknown Source) > at java.lang.ClassLoader$SystemClassLoader.loadClass(Unknown Sour= ce) > at java.lang.ClassLoader.loadClass(Unknown Source) > FAILED to invoke JVM. > I suspect this is a classlib issue, as it occurs on both DRLVM and IBM VM= E. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.