Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Javaで、半角文字と全角文字を変換するために使用できるユーティリティ、つまり日本語の英数字と全角の仮名はありますか?または、このために実装できるアルゴリズムまたはアプローチはありますか?
ICU4Jライブラリにはそれらがあります。
Transliterator tr = Transliterator.getInstance("Halfwidth-Fullwidth"); String converted = tr.transliterate("アイウエオ");