HTML J2ME Problem
i'm trying to put large amount of data in a java me application for a BlackBerry mobile and i noticed that the max file size to be accepted in BlackBerry is 150 KB, by the way i'm developping the application in arabic language so i'm converting every litter to his corresponding unicode so every char gets to 6 chars so its another big problem, some ppl told me that i can write arabic as arabic letters 开发者_StackOverflow社区without the need to write its unicode, by viewing the mobile form as an html page,
my problem is that i dont know how to view the page as html page and what is XMLParser ?? can anyone help me to get all this together, cos i really need some serious help
thank you alot Hesham
arabic language so i'm converting every litter to his corresponding unicode so every char gets to 6 chars
I assume you mean the Java unicode escape form when you say 6 chars, such as "\u0600" When the Java compiler sees this, it turns it into the single character representation that matches this Unicode code point. So there is no overhead to using this way of specifying unicode characters.
精彩评论