reading urdu, Arabic, Chinese, Japanese from url
Hi,
Hope you all will be fine.Does any one has an idea if i want to show urdu in my mobile after reading it from url, how can i do it. I have done this with this,
Code:
Reader r = new InputStreamReader(c.openInputStream(), "UTF-8");
int ch;
while ((ch = r.read()) != -1) {
b.append((char) ch );
But the problem is it is showing separate characters, do i need to convert utf-8 to urdu unicode, it's same as you want to show Arabic or Chinese or Japanese because these languages also include joining of their letters.Any idea
Thanks