public static void main(String[] args) throws Exception {
String input ="\\xE5\\x8C\\x97\\xE4\\xBA\\xAC\\xE5\\xB8\\x82";
String adjustedInput = input.replace("\\x", "%");
System.out.println(URLDecoder.decode(adjustedInput, "UTF-8"));
}
【 在 KEL 的大作中提到: 】
: RT
--
FROM 135.0.250.*