posted 21 years ago
Hi Pin
Thanks for the link.
I gone through the articles written on Internationalization on J2ME, and Finally I concluded with some ideas, still I have some query. I am in India, I want to give application on Hindi, Bengali and other Indian Local Language , now I am using the Unicode standard and I need to hardcode the content, as Indian Local language script is not english, if it is english I could go to ResourceBundle and Locale technique.
For example
TextBox box = new TextBox("Devanagari", "\u0966 \u0967 \u0968 \u0969 \u096a \u096b \u096c \u096d \u096e \u096f", 20, 0);
Result You will see the decimal numerals written in Devanagari:
Now let suppose a name called Hindi I want to display in its own language, here if I use Unicode one by one character, the first I have to have unicode for H then I.. N. D.. I Which is wrong because in hindi I came before H, so I need the logic of placing the alphabet.
Second My Application on J2ME need to display in 12 language, what we thought there will be menu of language preference and when user
select the preferred language it will download the unicode font midlet from server, now one more problem in J2ME 1.0 I cant access from one midlet suite to other midlet suite. So how the font midlet will be in the classpath such that the application midlet in the handset can access the font midlet that he downloaded now.
If you have any idea please share with me.
Thanks and Regards
Tapan