I need to use UTF-8 in my resource properties using Java's ResourceBundle. When I enter the text directly into the properties file, it displays as mojibake.
My app runs on Google App Engine.
Can anyone give me an example? I can't get this work.
|
I need to use UTF-8 in my resource properties using Java's My app runs on Google App Engine. Can anyone give me an example? I can't get this work. |
||||
|
|
|
As per the javadoc of the Alternatively, you could also create a custom Here's a kickoff example:
Use it as follows:
See also: |
||||
|
|
Given that you have an instance of ResourceBundle and you can get String by:
I solved my Japanese display problem by:
|
|||||
|
|
|
We create a resources.utf8 file that contains the resources in UTF-8 and have a rule to run the following:
|
|||
|
|
|
|||
|
|
|
http://sourceforge.net/projects/eclipse-rbe/ as already stated property files should be encoded in ISO 8859-1 You can use the above plugin for eclipse IDE to make the Unicode conversion for you. |
|||
|
|
|
ResourceBundle.Control with Utf-8 and new String methods don't work if properties file write in cp1251 charset, for example. So I recomended use common method - write in unicode symbols. For this: IDEA -- has special "Transparent native-to-ASCII conversion" option (Settings > File Encoding). Eclispes -- has plugin "Properties Editor". It can works as separate application. |
|||
|
|
|
Attention: java property files should be encoded in ISO 8859-1!
@see Properties Java Doc If you still really want to do this: have a look at: Problem with Java properties utf8 encoding in Eclipse -- there are some code samples |
|||
|
|