我用空格分割这个字符串:(String input = ":-) :) :o) :] :3 :c) :> =] 8) =) :} :^)";
表情符号之间的空格)
结果是:
:-)?:)?:o)?:]?:3?:c)?:>
=]
8)
=)?:}?:^)
结果中有一些奇怪的字符。我不知道为什么。请帮我。
这是代码:
fileReader = new BufferedReader(new FileReader("emoticon.txt"));
String line = "";
while ((line = fileReader.readLine()) != null){
String[] icons = parts[0].split("\\s+");
....
}
感谢您的任何建议。这是表情文件:
https ://www.dropbox.com/s/6ovz0aupqo1utrx/emoticon.txt