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, so I need some light API, or, preferably, a piece of code that would do so.

Thanks!

link|improve this question

3  
which character exactly you want to convert to lower ? which range particularly ? – Jigar Joshi Sep 15 '10 at 16:36
Why should I particularize? I like a general solution. If i did, I could look in the Unicode spec myself. I don't want to re-engineer the wheel: somebody must have written this kind of general code. – Albus Dumbledore Sep 15 '10 at 17:22
OK. The official doc says it works only for latin-iso chars. Other chars are not changed. That's all. In other words it's implemented only for ansi. Thanks. – Albus Dumbledore Sep 15 '10 at 17:35
feedback

3 Answers

Based on the toLowerCase() method from Character in JavaSE JDK:

char lowerChar = (char)CharacterData.of((int)upperChar).toLowerCase((int)upperChar);

You can read the source code from the JDK and understand what is really done here and apply the same thing with your own classes in JME.


Resources :

link|improve this answer
This answers the question title, but not the question message. – BalusC Sep 15 '10 at 17:17
@BalusC, I know it won't work as is in JME, I'm just saying that the best way to do this, is to look at the way this works with JSE. (Edited to make it more clear) – Colin Hebert Sep 15 '10 at 17:22
OK, my bad. I'll change the title. Of course, there is the possibility of porting some of the classes to j2me. It might be easier if their is nothing else. – Albus Dumbledore Sep 15 '10 at 17:28
feedback
char toLowerCase(char c){
    if(c>=97 && c<=122)
        return (char) (c-32);
    else
        return c;
}
link|improve this answer
Simply brilliant. – SidCool Sep 15 '10 at 16:59
Perfect. But please tell me how in the world it is suppose to work with non-ASCII characters (like Ą, Ć, Ę, Ó, Ś... Not to mention Greek or Cyrillic)? – Paweł Dyda Sep 15 '10 at 17:08
3  
-1 the question is about unicode, your answer only deals with ascii. – josefx Sep 15 '10 at 17:08
Unicode needed. – Albus Dumbledore Sep 15 '10 at 17:18
-1: not unicode compatible – Michael Konietzka Oct 29 '10 at 18:22
feedback
up vote 0 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.