微信昵称有特殊符号怎么保存到mysql库里?

分享一下我的个人微信小程序

 

 

微信昵称有特殊符号怎么保存到mysql库里?

mysql库怎么保存emoji表情?

 

这里提供 1 种稳妥有效的方法:

// 入库之前,使用 Base64 编码
String nickname = request.getParameter("nickname");
nickname = Base64.encodeBase64String(nickname.getBytes("utf-8"));

  

// 出库后,使用 Base64 解码
nickname = new String(Base64.decodeBase64(nickname.getBytes()), "utf-8");

 

Base64 连图片都能编码,何况区区一特殊符号

posted @ 2017-05-16 09:20  廖龙军  阅读(11795)  评论(4编辑  收藏  举报