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/14 13:04:15 UTC

[jira] Created: (HARMONY-878) [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")

[classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")
---------------------------------------------------------------------------------

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


The Harmont constructor java.text.DecimalFormat("0\t9") throws IllegalArgumentException while RI return correct value.

================== test.java ===============
import java.text.*;

public class test  { 
    public static void main (String[] args) { 
       try {                                                                                                                                  
           System.out.println("res = " + new DecimalFormat("0\t9").getMaximumIntegerDigits());
       } catch (Exception e) {
           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))

res = 2147483647

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.
java.lang.IllegalArgumentException: Unquoted special character '9' in pattern "0        9"
        at com.ibm.icu.text.DecimalFormat.patternError(DecimalFormat.java:3807)
        at com.ibm.icu.text.DecimalFormat.applyPattern(DecimalFormat.java:3525)
        at com.ibm.icu.text.DecimalFormat.<init>(DecimalFormat.java:687)
        at java.text.DecimalFormat.<init>(DecimalFormat.java:90)
        at java.text.DecimalFormat.<init>(DecimalFormat.java:70)
        at test.main(test.java:6)


-- 
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-878) [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")

Posted by "Vladimir Ivanov (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-878?page=comments#action_12444177 ] 
            
Vladimir Ivanov commented on HARMONY-878:
-----------------------------------------

Actually, it is still failed because it is ICU bug:

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))

res = 2147483647

C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . test
java.lang.IllegalArgumentException: Unquoted special character '9' in pattern "0        9"
        at com.ibm.icu.text.DecimalFormat.patternError(DecimalFormat.java:387)
        at com.ibm.icu.text.DecimalFormat.applyPattern(DecimalFormat.java:3525)
        at com.ibm.icu.text.DecimalFormat.<init>(DecimalFormat.java:687)
        at java.text.DecimalFormat.<init>(DecimalFormat.java:95)
        at java.text.DecimalFormat.<init>(DecimalFormat.java:74)
        at test.main(test.java:6)


> [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")
> ---------------------------------------------------------------------------------
>
>                 Key: HARMONY-878
>                 URL: http://issues.apache.org/jira/browse/HARMONY-878
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Vladimir Ivanov
>         Assigned To: Nathan Beyer
>         Attachments: DecimalFormatTest.patch
>
>
> The Harmont constructor java.text.DecimalFormat("0\t9") throws IllegalArgumentException while RI return correct value.
> ================== test.java ===============
> import java.text.*;
> public class test  { 
>     public static void main (String[] args) { 
>        try {                                                                                                                                  
>            System.out.println("res = " + new DecimalFormat("0\t9").getMaximumIntegerDigits());
>        } catch (Exception e) {
>            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))
> res = 2147483647
> 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.
> java.lang.IllegalArgumentException: Unquoted special character '9' in pattern "0        9"
>         at com.ibm.icu.text.DecimalFormat.patternError(DecimalFormat.java:3807)
>         at com.ibm.icu.text.DecimalFormat.applyPattern(DecimalFormat.java:3525)
>         at com.ibm.icu.text.DecimalFormat.<init>(DecimalFormat.java:687)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:90)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:70)
>         at test.main(test.java:6)

-- 
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-878) [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")

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

Vladimir Ivanov updated HARMONY-878:
------------------------------------

    Attachment: DecimalFormatTest.patch

unit test

> [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")
> ---------------------------------------------------------------------------------
>
>                 Key: HARMONY-878
>                 URL: http://issues.apache.org/jira/browse/HARMONY-878
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Vladimir Ivanov
>         Attachments: DecimalFormatTest.patch
>
>
> The Harmont constructor java.text.DecimalFormat("0\t9") throws IllegalArgumentException while RI return correct value.
> ================== test.java ===============
> import java.text.*;
> public class test  { 
>     public static void main (String[] args) { 
>        try {                                                                                                                                  
>            System.out.println("res = " + new DecimalFormat("0\t9").getMaximumIntegerDigits());
>        } catch (Exception e) {
>            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))
> res = 2147483647
> 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.
> java.lang.IllegalArgumentException: Unquoted special character '9' in pattern "0        9"
>         at com.ibm.icu.text.DecimalFormat.patternError(DecimalFormat.java:3807)
>         at com.ibm.icu.text.DecimalFormat.applyPattern(DecimalFormat.java:3525)
>         at com.ibm.icu.text.DecimalFormat.<init>(DecimalFormat.java:687)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:90)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:70)
>         at test.main(test.java:6)

-- 
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-878) [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")

Posted by "Vladimir Ivanov (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-878?page=comments#action_12447615 ] 
            
Vladimir Ivanov commented on HARMONY-878:
-----------------------------------------

Yoshito Umaoka, ICU Development comment on this issue:
"This is expected behavior in ICU4J.  ICU4J DecimalFormat uses letter '1' -
'9' in pattern for rounding support.  That's why the pattern "0\t9" is
illegal.  If you really want to use "\t9" as suffix, it must use quote ->
"0'\t9'" or "0\t'9'"."

So we should process such string by harmony code or mark it as non-bug diff with RI.

 thanks, Vladimir


> [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")
> ---------------------------------------------------------------------------------
>
>                 Key: HARMONY-878
>                 URL: http://issues.apache.org/jira/browse/HARMONY-878
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Vladimir Ivanov
>         Assigned To: Nathan Beyer
>         Attachments: DecimalFormatTest.patch
>
>
> The Harmont constructor java.text.DecimalFormat("0\t9") throws IllegalArgumentException while RI return correct value.
> ================== test.java ===============
> import java.text.*;
> public class test  { 
>     public static void main (String[] args) { 
>        try {                                                                                                                                  
>            System.out.println("res = " + new DecimalFormat("0\t9").getMaximumIntegerDigits());
>        } catch (Exception e) {
>            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))
> res = 2147483647
> 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.
> java.lang.IllegalArgumentException: Unquoted special character '9' in pattern "0        9"
>         at com.ibm.icu.text.DecimalFormat.patternError(DecimalFormat.java:3807)
>         at com.ibm.icu.text.DecimalFormat.applyPattern(DecimalFormat.java:3525)
>         at com.ibm.icu.text.DecimalFormat.<init>(DecimalFormat.java:687)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:90)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:70)
>         at test.main(test.java:6)

-- 
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] Assigned: (HARMONY-878) [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")

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

Nathan Beyer reassigned HARMONY-878:
------------------------------------

    Assignee: Nathan Beyer

> [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")
> ---------------------------------------------------------------------------------
>
>                 Key: HARMONY-878
>                 URL: http://issues.apache.org/jira/browse/HARMONY-878
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Vladimir Ivanov
>         Assigned To: Nathan Beyer
>         Attachments: DecimalFormatTest.patch
>
>
> The Harmont constructor java.text.DecimalFormat("0\t9") throws IllegalArgumentException while RI return correct value.
> ================== test.java ===============
> import java.text.*;
> public class test  { 
>     public static void main (String[] args) { 
>        try {                                                                                                                                  
>            System.out.println("res = " + new DecimalFormat("0\t9").getMaximumIntegerDigits());
>        } catch (Exception e) {
>            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))
> res = 2147483647
> 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.
> java.lang.IllegalArgumentException: Unquoted special character '9' in pattern "0        9"
>         at com.ibm.icu.text.DecimalFormat.patternError(DecimalFormat.java:3807)
>         at com.ibm.icu.text.DecimalFormat.applyPattern(DecimalFormat.java:3525)
>         at com.ibm.icu.text.DecimalFormat.<init>(DecimalFormat.java:687)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:90)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:70)
>         at test.main(test.java:6)

-- 
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] Resolved: (HARMONY-878) [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")

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

Nathan Beyer resolved HARMONY-878.
----------------------------------

    Resolution: Fixed

Applied path at r422300. Please verify it. Thanks.

> [classlib][text]unexpected IllegalArgumentException for new DecimalFormat("0\t9")
> ---------------------------------------------------------------------------------
>
>                 Key: HARMONY-878
>                 URL: http://issues.apache.org/jira/browse/HARMONY-878
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Vladimir Ivanov
>         Assigned To: Nathan Beyer
>         Attachments: DecimalFormatTest.patch
>
>
> The Harmont constructor java.text.DecimalFormat("0\t9") throws IllegalArgumentException while RI return correct value.
> ================== test.java ===============
> import java.text.*;
> public class test  { 
>     public static void main (String[] args) { 
>        try {                                                                                                                                  
>            System.out.println("res = " + new DecimalFormat("0\t9").getMaximumIntegerDigits());
>        } catch (Exception e) {
>            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))
> res = 2147483647
> 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.
> java.lang.IllegalArgumentException: Unquoted special character '9' in pattern "0        9"
>         at com.ibm.icu.text.DecimalFormat.patternError(DecimalFormat.java:3807)
>         at com.ibm.icu.text.DecimalFormat.applyPattern(DecimalFormat.java:3525)
>         at com.ibm.icu.text.DecimalFormat.<init>(DecimalFormat.java:687)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:90)
>         at java.text.DecimalFormat.<init>(DecimalFormat.java:70)
>         at test.main(test.java:6)

-- 
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