首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

encodeURIComponent的应用

2013-08-01 
encodeURIComponent的使用encodeURIComponent()/*** jQuery.post的提交中文转码(js将中文字符串encodeURI

encodeURIComponent的使用
encodeURIComponent(); /** * jQuery.post的提交中文转码(js将中文字符串encodeURIComponent(中文字符串)) * @param string 字符串 * @return utf-8 字符串 */ private String getUtf8String(String string){ if(StringUtils.isEmpty(string)){ return ""; } try { return URLDecoder.decode(string, "utf-8"); } catch (UnsupportedEncodingException e) { return ""; } }

?

热点排行