My client uses InputStreamReader/BufferedReader to fetch text from the Internet. However when I save the Text to a *.txt the text shows extra weird special symbols like  .
我曾尝试将“强力”转至ASCII,但我使用的是Syssupp å,ä,ö。
I ve tried food =
food.replace("Â", ""); and IndexOf();
But string won t find it. But it s there in HEX Editor.
So summary: When I use text.setText
(Android), the output looks fine with NO weird symbols, but when I save the text to *.txt I get about 4 of  . I do not want ASCII because I use other Non-ASCII character.
The  is displayed as a Whitespace on my Android and in notepad.
感谢!
有一个伟大的周!
EDIT: Solved it by removing all Non-breaking-spaces:
myString.replaceAll("\u00a0"," ");