Java Cookbook
transliteration
Problem:
You want to get all available transliterator ids.
Solution:
You obtain a Transliterator by specifying an id. The id is a String that contains two script names separated by a hyphen, for example: "Latin-Hangul."
To obtain a list of all ids:
One of the most important tasks a Java internationalization programmer has is the handling of different writing systems. Characterset conversion used to be a huge task for all developers working with multiple locales. While the wide-spread acceptance of Unicode has made that job much easier than before, there are still many situations where characterset conversion becomes important.
If you are testing any of these recipes in Eclipse and the characters are not displaying correctly in your console visit http://i18ncookbook.com/eclipse_settings.
This site is ad supported. I hope you find something among our sponsors worth clicking. ;)
i18n search