Java Solaris Communities Sun Store Join SDN My Profile Why Join?
 
Bug Database
Bug Detail
Quick Lists
Top 25 Bugs
Top 25 RFE's
Recently Closed Bugs
Printable Page Printable Page


Bug Database
Bug ID: 4453915
Votes 1
Synopsis Localized JAI operation names are not case-insensitive
Category jai:implementation
Reported Against 1.1
Release Fixed 1.1.3
State 10-Fix Delivered, bug
Priority: 5-Very Low
Related Bugs
Submit Date 03-MAY-2001
Description
when setting a different Locale, say "tr" for Turkish,
JAI opertor names are no longer case insensitive,
especially in Turkish, "i" and "I" are not related.

Using the following sample code to reproduce the problem.
John

import java.util.Locale;
import javax.media.jai.JAI;
public final class JAIBug {
    public static void main (String args[]) {
      Locale.setDefault(new Locale("tr","TR"));
      JAI.getDefaultInstance().getOperationRegistry();
    }
}
Work Around
N/A
Evaluation
Need to use Locale.ENGLISH with toLowerCase().

*** (#1 of 1): [ UNSAVED ]   xxxxx@xxxxx  
Posted Date : 2006-06-19 18:41:00.0
Comments
  
  Include a link with my name & email   


PLEASE NOTE: JDK6 is formerly known as Project Mustang