首頁 > 軟體

java中使用url進行編碼和解碼

2022-08-16 18:01:50

使用url進行編碼和解碼

編碼和解碼的類

java.net.URLDecoder.decode(url,解碼格式) 解碼器.解碼方法。

轉化成普通字串,URLEncoder.decode(url,編碼格式) 將普通字串變成指定格式的字串

package com.zixue.springbootmybatis.test;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.net.URLEncoder;
/** 編碼Encode後都返回了新的字串,編碼後的字串不能跨平臺,所以要統一制定編碼格式
 *  需要注意的是在url中 "" '&' '=' ':' '/'都是具有特殊意義的符號,這些符號一旦被編譯後就會失去本身的
 *  含義,導致無法被解析,
 *  所以在url中需要分塊編碼,
 *  解碼Decoder類中decode方法作用是變回成普通字元,其中加號會變成空格,
 * */
public class testtest {
    public static void main(String[] args) throws UnsupportedEncodingException {
       String url = "http://www.baidu.com?name='張三'&age=18 ";
       String encodeStr = URLEncoder.encode(url,"UTF-8");
        System.out.println(encodeStr);
        System.out.println(URLDecoder.decode(encodeStr,"UTF-8"));
    }
}

js中的編碼

  • encodeURL(String url) 作用將字串作為url進行編碼,是對url進行完整編碼,所有對:?@ & = 是不會進行跳脫的
  • encodeURLComponent() 作用是將字串進行編碼,一般用於對某個引數需要單個編譯的情況下使用,引數可以是中文
<script >
			$(function(){
				alert("haha");
				var str = 'http://www.baidu.com?name=張三&age=18';
				console.log(str);
				a(str);
			});
			function a (s){
				var h = encodeURI(s);
				console.log(h);
				var y = encodeURIComponent("張三");
				console.log(y);
				var g = "www.baidu.com?name=";
				var i  = encodeURIComponent("張三");
				console.log(g+i);
				
			}
		</script>

Java正確URL解碼方式:URLDecoder.decode

Exception in thread "main" java.lang.IllegalArgumentException: URLDecoder: Illegal hex characters in escape (%) pattern - For input string: "u9"
    at java.net.URLDecoder.decode(URLDecoder.java:194)
    at com.hbzx.controller.PayResultController.main(PayResultController.java:253)

Java呼叫 URLDecoder.decode(str, "UTF-8"); 丟擲以上的異常,其主要原因是% 在URL中是特殊字元,需要特殊跳脫一下,

解決辦法

使用%25替換字串中的%號  

 url = url.replaceAll("%(?![0-9a-fA-F]{2})", "%25");
   String urlStr = URLDecoder.decode(url, "UTF-8");

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com