码迷,mamicode.com
首页 > 其他好文 > 详细

2019-03-30

时间:2019-03-30 10:33:30      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:除了   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码以“\”开头

2019-03-30

标签:除了   unicode   out   需要   是什么   ring   acea   get   空格   

原文地址:https://www.cnblogs.com/xiaobaxi101/p/10625305.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!