Java中URLEncoder.encode與URLDecoder.decode處理url特殊引數的方法
最近在使用 url 的 queryString 傳遞引數時,因為引數的值(注意是引數的值被加密),被DES加密了,而加密得到的是 Base64的編碼字串。
類似於:
za4T8MHB/6mhmYgXB7IntyyOUL7Cl++0jv5rFxAIFVji8GDrcf+k8g==
顯然 這裡面含有了 特殊字元: / + = 等等,如果直接通過url 來傳遞該引數:
url = "xxxxx?param=" + "za4T8MHB/6mhmYgXB7IntyyOUL7Cl++0jv5rFxAIFVji8GDrcf+k8g==";
那麼在服務端獲得 param 會變成類似於下面的值:
"za4T8MHB/6mhmYgXB7IntyyOUL7Cl 0jv5rFxAIFVji8GDrcf k8g=="
我們看到 三個 + 號消失了。
其原因就是:如果url引數值含有特殊字元時,需要使用 url 編碼。
url = "xxxxx?param=" + URLEncoder.encode("xxx", "utf-8");
然後服務端獲取時:
String param = URLDecoder.decode(param, "utf-8");
這樣才能獲得正確的值:"za4T8MHB/6mhmYgXB7IntyyOUL7Cl++0jv5rFxAIFVji8GDrcf+k8g=="
注意事項:
URLEncoder should be the way to go. You only need to keep in mind to encode only the individual query string parameter name and/or value, not the entire URL, for sure not the query string parameter separator character & nor the parameter name-value separator character =
String q = "random word 攏500 bank $";
String url = "http://example.com/query?q=" + URLEncoder.encode(q, "UTF-8");
URLEncoder 必須 僅僅 編碼 引數 或者引數的值,不能編碼整個 url,也不能一起對 param=value
進行編碼。
而是應該: param=URLEncode(value, "utf-8")
或者URLEncode(param, "utf-8")=URLEncode(value, "utf-8")
因為 url 中的 & 和 = 他們是作為引數之間 以及 引數和值之間的分隔符的。如果一起編碼了,就無法區分他們了。