Convert char to lower case in J2ME without using the Character class

前端 未结 3 669
陌清茗
陌清茗 2021-01-15 16:44

I\'d like to convert a char to lower case in a J2ME app. The usual Character.toLowerCase() doesn\'t work for an arbitrary Unicode character in J2ME

3条回答
  •  广开言路
    2021-01-15 17:08

    I just copied some of the stuff from Java SE 1.3 and included it in my J2ME app. Generally, it's a few methods and three big arrays from the Character class.

提交回复
热议问题