Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4120068

ResourceBundle falls back to default locale before root locale

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.2.0
    • 1.2.0
    • core-libs
    • 1.2beta4
    • generic, sparc
    • generic, solaris_2.5.1
    • Not verified



      Name: bb33257 Date: 03/16/98


      The fallback mechanism for ResourceBundle.getBundle appears to be broken. When I call getBundle on a locale for which the resource bundle does not exist, it falls back to the default locale's version of the bundle rather than the root locale's version. For example, say I have two resource bundles:

      public class MyBundle extends ListResourceBundle {
          protected Object[][] getContents() {
              return new Object[][] { { "key", "root" } };
          }
      }

      public class MyBundle_en_US extends ListResourceBundle {
          protected Object[][] getContents() {
              return new Object[][] { { "key", "en_US" } };
          }
      }

      The following test program will access MyBundle_en_US rather than MyBundle:

      public class BundleBug {
          static public void main(String[] args) {
              Locale.setDefault(Locale.US);
              ResourceBundle rb = ResourceBundle.getBundle("MyBundle",
                                                    Locale.UK);
              String str = rb.getString("key");
              if (!str.equals("root")) {
                  throw new RuntimeException("Expected 'root', got '"
                                             + str + "'");
              }
          }
      }

      When you run this, you get:
      java.lang.RuntimeException: Expected 'root', got 'en_US'
              at BundleBug.main(BundleBug.java:15)

      ======================================================================

            rgillamsunw Richard Gillam (Inactive)
            bcbeck Brian Beck (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: