
La clase ResourceBundle permite cargar archivos properties según un Locale pero como digo los carga con la codificación ISO-8859-1 y esto es un problema para los locales como el chino donde casi todos los caracteres deben ser escapados. Si queremos tener archivos más legibles y sin necesidad de escapar los caracteres debemos extender la clase ResourceBundle.Control y redefinirla un poco para que cargue los properties en UTF-8. La implementación sería la siguiente:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package es.com.blogspot.elblogdepicodev.properties; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.security.AccessController; | |
import java.security.PrivilegedActionException; | |
import java.security.PrivilegedExceptionAction; | |
import java.util.Locale; | |
import java.util.PropertyResourceBundle; | |
import java.util.ResourceBundle; | |
import java.util.ResourceBundle.Control; | |
public class EncodingControl extends Control { | |
private String encoding; | |
public EncodingControl(String encoding) { | |
this.encoding = encoding; | |
} | |
@Override | |
public ResourceBundle newBundle(String baseName, Locale locale, String format, ClassLoader loader, boolean reload) throws IllegalAccessException, InstantiationException, | |
IOException { | |
String bundleName = toBundleName(baseName, locale); | |
ResourceBundle bundle = null; | |
if (format.equals("java.class")) { | |
try { | |
Class<? extends ResourceBundle> bundleClass = (Class<? extends ResourceBundle>) loader.loadClass(bundleName); | |
// If the class isn't a ResourceBundle subclass, throw a | |
// ClassCastException. | |
if (ResourceBundle.class.isAssignableFrom(bundleClass)) { | |
bundle = bundleClass.newInstance(); | |
} else { | |
throw new ClassCastException(bundleClass.getName() + " cannot be cast to ResourceBundle"); | |
} | |
} catch (ClassNotFoundException e) { | |
} | |
} else if (format.equals("java.properties")) { | |
final String resourceName = toResourceName(bundleName, "properties"); | |
final ClassLoader classLoader = loader; | |
final boolean reloadFlag = reload; | |
InputStream stream = null; | |
try { | |
stream = AccessController.doPrivileged(new PrivilegedExceptionAction<InputStream>() { | |
public InputStream run() throws IOException { | |
InputStream is = null; | |
if (reloadFlag) { | |
URL url = classLoader.getResource(resourceName); | |
if (url != null) { | |
URLConnection connection = url.openConnection(); | |
if (connection != null) { | |
// Disable caches to get fresh data | |
// for | |
// reloading. | |
connection.setUseCaches(false); | |
is = connection.getInputStream(); | |
} | |
} | |
} else { | |
is = classLoader.getResourceAsStream(resourceName); | |
} | |
return is; | |
} | |
}); | |
} catch (PrivilegedActionException e) { | |
throw (IOException) e.getException(); | |
} | |
if (stream != null) { | |
try { | |
bundle = new PropertyResourceBundle(new InputStreamReader(stream, encoding)); | |
} finally { | |
stream.close(); | |
} | |
} | |
} else { | |
throw new IllegalArgumentException("unknown format: " + format); | |
} | |
return bundle; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bundle = new PropertyResourceBundle(new InputStreamReader(stream, encoding)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ResourceBundle bundle = ResourceBundle.getBundle("utf8-2", new EncodingControl("UTF-8")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package es.com.blogspot.elblogdepicodev.properties; | |
import java.util.ResourceBundle; | |
public class Main { | |
public static void main(String[] args) { | |
// Cargar un archivo properties en ISO-8859-1. Los caracteres del String obtenido de prueba se cargan correctamente. | |
{ | |
ResourceBundle bundle = ResourceBundle.getBundle("default"); | |
String s = bundle.getString("prueba"); | |
System.out.println(s); | |
} | |
// Cargar un archivo properties UTF-8 con codificación ISO-8859-1. Los caracteres del String obtenido de prueba NO se cargan correctamente. | |
{ | |
ResourceBundle bundle = ResourceBundle.getBundle("utf8-1"); | |
String s = bundle.getString("prueba"); | |
System.out.println(s); | |
} | |
// Cargar un archivo properties en UTF-8. Los caracteres del String obtenido de prueba se cargan correctamente. | |
{ | |
ResourceBundle bundle = ResourceBundle.getBundle("utf8-2", new EncodingControl("UTF-8")); | |
String s = bundle.getString("prueba"); | |
System.out.println(s); | |
} | |
} | |
} |
El código fuente del ejemplo completo lo puedes encontrar en mi repositorio de GitHub.
Referencia:
http://stackoverflow.com/questions/4659929/how-to-use-utf-8-in-resource-properties-with-resourcebundle