You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vladimir Ivanov (JIRA)" <ji...@apache.org> on 2006/07/19 08:15:14 UTC

[jira] Created: (HARMONY-916) [classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");

[classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");
-------------------------------------------------------------------------------------------------

                 Key: HARMONY-916
                 URL: http://issues.apache.org/jira/browse/HARMONY-916
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Vladimir Ivanov


The Harmony method String(bye[], int, int, String) throws  unexpected IllegalCharsetNameException while spec required UnsupportedEncodingException.

================ test.java ======================
import java.net.*;
import java.io.*;

public class test  { 
    public static void main(String[] args) {
        try {
            byte[] array = new byte[] { 2, 2, 2, 2, 2};
            new String(array, 0, 4, "zzz\\");
            System.out.println("Test failed");
        } catch (UnsupportedEncodingException e) {
              System.out.println("Test passed: " + e);
        } catch (Throwable e) {
            System.out.println("Test failed: unexpected error");
            e.printStackTrace();
        }
    }
}
=============================================

Output:
C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))

Test passed: java.io.UnsupportedEncodingException: zzz\

C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
java version 1.5 (subset)

(c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
Test failed: unexpected error
java.nio.charset.IllegalCharsetNameException: The illegal charset name is "zzz\".
        at java.nio.charset.Charset.checkCharsetName(Charset.java:239)
        at java.nio.charset.Charset.forNameInternal(Charset.java:441)
        at java.nio.charset.Charset.forName(Charset.java:514)
        at java.lang.String.<init>(String.java:347)
        at test.main(test.java:8)


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (HARMONY-916) [classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");

Posted by "spark shen (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-916?page=comments#action_12435370 ] 
            
spark shen commented on HARMONY-916:
------------------------------------

This bug has already been fixed. Would any commiter close this JIRA please.

> [classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");
> -------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-916
>                 URL: http://issues.apache.org/jira/browse/HARMONY-916
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Attachments: String.patch
>
>
> The Harmony method String(bye[], int, int, String) throws  unexpected IllegalCharsetNameException while spec required UnsupportedEncodingException.
> ================ test.java ======================
> import java.net.*;
> import java.io.*;
> public class test  { 
>     public static void main(String[] args) {
>         try {
>             byte[] array = new byte[] { 2, 2, 2, 2, 2};
>             new String(array, 0, 4, "zzz\\");
>             System.out.println("Test failed");
>         } catch (UnsupportedEncodingException e) {
>               System.out.println("Test passed: " + e);
>         } catch (Throwable e) {
>             System.out.println("Test failed: unexpected error");
>             e.printStackTrace();
>         }
>     }
> }
> =============================================
> Output:
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> Test passed: java.io.UnsupportedEncodingException: zzz\
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Test failed: unexpected error
> java.nio.charset.IllegalCharsetNameException: The illegal charset name is "zzz\".
>         at java.nio.charset.Charset.checkCharsetName(Charset.java:239)
>         at java.nio.charset.Charset.forNameInternal(Charset.java:441)
>         at java.nio.charset.Charset.forName(Charset.java:514)
>         at java.lang.String.<init>(String.java:347)
>         at test.main(test.java:8)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-916) [classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");

Posted by "Vladimir Ivanov (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-916?page=all ]

Vladimir Ivanov updated HARMONY-916:
------------------------------------

    Attachment: String.patch

patch

> [classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");
> -------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-916
>                 URL: http://issues.apache.org/jira/browse/HARMONY-916
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Attachments: String.patch
>
>
> The Harmony method String(bye[], int, int, String) throws  unexpected IllegalCharsetNameException while spec required UnsupportedEncodingException.
> ================ test.java ======================
> import java.net.*;
> import java.io.*;
> public class test  { 
>     public static void main(String[] args) {
>         try {
>             byte[] array = new byte[] { 2, 2, 2, 2, 2};
>             new String(array, 0, 4, "zzz\\");
>             System.out.println("Test failed");
>         } catch (UnsupportedEncodingException e) {
>               System.out.println("Test passed: " + e);
>         } catch (Throwable e) {
>             System.out.println("Test failed: unexpected error");
>             e.printStackTrace();
>         }
>     }
> }
> =============================================
> Output:
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> Test passed: java.io.UnsupportedEncodingException: zzz\
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Test failed: unexpected error
> java.nio.charset.IllegalCharsetNameException: The illegal charset name is "zzz\".
>         at java.nio.charset.Charset.checkCharsetName(Charset.java:239)
>         at java.nio.charset.Charset.forNameInternal(Charset.java:441)
>         at java.nio.charset.Charset.forName(Charset.java:514)
>         at java.lang.String.<init>(String.java:347)
>         at test.main(test.java:8)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (HARMONY-916) [classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");

Posted by "Nathan Beyer (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-916?page=all ]

Nathan Beyer closed HARMONY-916.
--------------------------------

    Resolution: Invalid

This has been already been resolved.

> [classlib][lang] unexpected IllegalCharsetNameException for new String(bye[], int, int, "zzz\\");
> -------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-916
>                 URL: http://issues.apache.org/jira/browse/HARMONY-916
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Attachments: String.patch
>
>
> The Harmony method String(bye[], int, int, String) throws  unexpected IllegalCharsetNameException while spec required UnsupportedEncodingException.
> ================ test.java ======================
> import java.net.*;
> import java.io.*;
> public class test  { 
>     public static void main(String[] args) {
>         try {
>             byte[] array = new byte[] { 2, 2, 2, 2, 2};
>             new String(array, 0, 4, "zzz\\");
>             System.out.println("Test failed");
>         } catch (UnsupportedEncodingException e) {
>               System.out.println("Test passed: " + e);
>         } catch (Throwable e) {
>             System.out.println("Test failed: unexpected error");
>             e.printStackTrace();
>         }
>     }
> }
> =============================================
> Output:
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> Test passed: java.io.UnsupportedEncodingException: zzz\
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Test failed: unexpected error
> java.nio.charset.IllegalCharsetNameException: The illegal charset name is "zzz\".
>         at java.nio.charset.Charset.checkCharsetName(Charset.java:239)
>         at java.nio.charset.Charset.forNameInternal(Charset.java:441)
>         at java.nio.charset.Charset.forName(Charset.java:514)
>         at java.lang.String.<init>(String.java:347)
>         at test.main(test.java:8)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira