标签:除了 unicode out 需要 是什么 ring acea get 空格
1、String转成UTF-8码(发现String在trim()之后仍然会有空格的存在,这时候需要把字符串转成unicode码,看下那个空格是什么,再利用replaceAll的方法做替换)
String ac="w we";
byte[] bytes = ac.getBytes("utf-8");
for (byte b : bytes) {
System.out.println("\\u"+Integer.toHexString((int) b));
}
replaceAll方法第一个参数除了可以写正则表达式,,也可以写unicode码,unicode码以“\”开头
标签:除了 unicode out 需要 是什么 ring acea get 空格
原文地址:https://www.cnblogs.com/xiaobaxi101/p/10625305.html