我有一个从 twitter 流 api 实时解析推文的程序。在存储它们之前,我将它们编码为 utf8。某些字符最终会以 ?、?? 或 ??? 出现在字符串中 而不是他们各自的unicode代码并导致问题。经过进一步调查,我发现有问题的字符来自“表情”块,U+1F600 - U+1F64F,和“杂项符号和象形文字”块,U+1F300 - U+1F5FF。我尝试删除,但没有成功,因为匹配器最终替换了字符串中的几乎每个字符,而不仅仅是我想要的 unicode 范围。
String utf8tweet = "";
try {
byte[] utf8Bytes = status.getText().getBytes("UTF-8");
utf8tweet = new String(utf8Bytes, "UTF-8");
}
catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
Pattern unicodeOutliers = Pattern.compile("[\\u1f300-\\u1f64f]", Pattern.UNICODE_CASE | Pattern.CANON_EQ | Pattern.CASE_INSENSITIVE);
Matcher unicodeOutlierMatcher = unicodeOutliers.matcher(utf8tweet);
utf8tweet = unicodeOutlierMatcher.replaceAll(" ");
我该怎么做才能删除这些字符?