hi all,
i convert arabic words+english numbers to binary utf-8
byte utf8[] = message.getBytes("UTF-8");
response.setContentLength(utf8.length);
out.write(utf8);
out.flush();
out.close();
where message as i said before is a
string of arabic words & english numbers..
when a J2ME application read it it throws UTF8FormatException..
& i read that may be because it shouldnt be mix of different charset..
now i want solution for this please
thanks any one read it & wish to solve it..