Java 處理 \x 開頭的編碼

sweetmain發表於2018-03-22
@Test
public void decodeX() throws UnsupportedEncodingException {
    String s = "\\x22\\xE5\\x93\\x88\\xE5\\x93\\x88\\x22";
    String s1 = s.replaceAll("\\\\x", "%");
    String decode = URLDecoder.decode(s1, "utf-8");
    System.out.println(decode);
}
複製程式碼

感謝 Vert.x中國使用者組(515203212) 的 512058895 大神

相關文章