Localization.java
package org.djunits.locale;
import java.util.Locale;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
/**
* <p>
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
* <p>
* $LastChangedDate: 2019-01-18 00:35:01 +0100 (Fri, 18 Jan 2019) $, @version $Revision: 324 $, by $Author: averbraeck $,
* initial version Jun 12, 2014 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://tudelft.nl/pknoppers">Peter Knoppers</a>
*/
public class Localization
{
/** filename without .properties, to be found in src/main/resources folder. */
private final String bundleNamePrefix;
/** the resource bundle. */
private ResourceBundle resourceBundle;
/** current locale. */
private Locale currentLocale = null;
/**
* Create a Localization object.
* @param prefix String; the prefix of the properties files to use.
*/
public Localization(final String prefix)
{
this.bundleNamePrefix = prefix;
}
/**
* Retrieve a string from a locale bundle. If retrieval fails the value of key string, surrounded by exclamation marks is
* returned.
* @param key String; the key for the locale in the properties file
* @return localized string, or, if a translation could not be found return the key surrounded by exclamation marks
*/
public final String getString(final String key)
{
if (this.currentLocale == null || !this.currentLocale.equals(DefaultLocale.getLocale()))
{
if (DefaultLocale.getLocale() == null)
{
DefaultLocale.setLocale(new Locale("en"));
}
this.currentLocale = DefaultLocale.getLocale();
Locale.setDefault(this.currentLocale);
try
{
this.resourceBundle = ResourceBundle.getBundle(this.bundleNamePrefix, this.currentLocale);
}
catch (MissingResourceException e)
{
try
{
this.resourceBundle = ResourceBundle.getBundle("resources/" + this.bundleNamePrefix, this.currentLocale);
}
catch (MissingResourceException e2)
{
return '!' + key.substring(key.indexOf('.') + 1) + '!';
}
}
}
if (null == this.resourceBundle)
{
// Failed to find the resourceBundle (on a previous call to getString)
return '!' + key.substring(key.indexOf('.') + 1) + '!';
}
try
{
return this.resourceBundle.getString(key);
}
catch (MissingResourceException e)
{
return '!' + key.substring(key.indexOf('.') + 1) + '!';
}
}
}