Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9018363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T04:30:30+00:00 2026-06-16T04:30:30+00:00

When instantiating a Locale object with either one of the following language codes: he

  • 0

When instantiating a Locale object with either one of the following language codes: he, yi and id it doesn’t preserve their value.

For example:

Locale locale = new Locale("he", "il");
locale.getLanguage(); // -> "iw"

What is causing this and is there any way to work around this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T04:30:31+00:00Added an answer on June 16, 2026 at 4:30 am

    The Locale class does not impose any checks on what you feed in it, but it swaps out certain language codes for their old values. From the documentation:

    ISO 639 is not a stable standard; some of the language codes it
    defines (specifically “iw”, “ji”, and “in”) have changed. This
    constructor accepts both the old codes (“iw”, “ji”, and “in”) and the
    new codes (“he”, “yi”, and “id”), but all other API on Locale will
    return only the OLD codes.

    Here’s the constructor:

    public Locale(String language, String country, String variant) {
        this.language = convertOldISOCodes(language);
        this.country = toUpperCase(country).intern();
        this.variant = variant.intern();
    }
    

    And here’s the magic method:

    private String convertOldISOCodes(String language) { 
        // we accept both the old and the new ISO codes for the languages whose ISO 
        // codes have changed, but we always store the OLD code, for backward compatibility 
        language = toLowerCase(language).intern(); 
        if (language == "he") { 
            return "iw"; 
        } else if (language == "yi") { 
            return "ji"; 
        } else if (language == "id") { 
            return "in"; 
        } else { 
            return language; 
        }
    }
    

    The objects it creates are immutable, so there’s no working around this. The class is also final, so you can’t extend it and it has no specific interface to implement. One way to make it preserve those language codes would be to create a wrapper around this class and use that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been instantiating subclasses in javascript using object = new class () but I
I am successfully instantiating/automating Visual Studio using the following code: System.Type t = System.Type.GetTypeFromProgID(VisualStudio.DTE.9.0);
I am working with Active Directory using C#. Instantiating the PrincipalContext object seems to
After instantiating the logger, I would like to pass a value back to log4net
I am instantiating an object which builds an associative array. After it is instantiated,
When Instantiating a class, Windsor by default treats all public properties of the class
I'm instantiating an autocomplete input for Google Maps API (level 3), like so: var
I found myself instantiating the same objects in numerous tests, so I'm trying to
Whats the most common way of instantiating VB6 ActiveX controls inside of an Tcl/Tk
I have this problem: After instantiating this Window, open all nested expanders on the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.