1. 程式人生 > >前後臺的字符編碼處理

前後臺的字符編碼處理

問題 code 後臺 urlencode 頁面 解碼 ava 字符 component

 在後臺與前臺數據交互時如果有特殊字符就很容易出現問題,所以就需要對字符串進行編碼傳輸,在獲取後再進行解碼:

1.java後臺進行編碼與解碼

URLEncoder.encode(str,"utf-8");//編碼

URLDecoder.decode(str,"utf-8");//解碼

2.jsp頁面進行編碼解碼

encodeURI(str);//編碼

encodeURIComponent(str);//編碼

decodeURI(str);//解碼

decodeURIComponent(str);//解碼

前後臺的字符編碼處理