分享一下我的個人微信小程序
微信昵稱有特殊符號怎么保存到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 連圖片都能編碼,何況區區一特殊符號