I get garbage characters in the translated text because of bad character
decoding (I'm using a Mac, the default encoding on my system isn't UTF-8)
The solution to this is to explicitly configure the input stream reader to
use UTF-8 as character encoding:
new BufferedReader(new InputStreamReader(inputStream, "UTF-8"));
Rob
Original issue reported on code.google.com by rjjuurl...@gmail.com on 24 Nov 2007 at 8:43
Original issue reported on code.google.com by
rjjuurl...@gmail.com
on 24 Nov 2007 at 8:43