Originally Posted by
Mr.777
Store Unicodes in an arraylist or somewhere (you could access), get the unicode, compare it with the stored unicodes and place the character to the output.
I have tried that, but when I get the unicode from the website its already been changed to '�'. I tried getting one byte at a time
BufferedReader in = new BufferedReader(new InputStreamReader(oracle[0].openStream()), 1);
int data = in.read();
char theChar = (char) data;
and I had the same problem. The japanese characters unicode have already all been changed.