I'm using class Transliterator of the icu project to convert from half-width to full-width characters like this:
The result of converted
is: コンニチハ (full-width)
But:
String converted = transliterator.transliterate("コンニチハ"); //full-width
The result of converted
is still: コンニチハ (full-width)
My expectation is . Can anyone help me solve this?
Thanks.