在Java中替換特殊字符通常使用String類的replace()方法或正則表達式來完成。下面是一些常用的替換特殊字符的方法:
String str = "This is a <test> string";
String newStr = str.replace("<", "<").replace(">", ">");
System.out.println(newStr);
String str = "This is a <test> string";
String newStr = str.replaceAll("<|>", "");
System.out.println(newStr);
String str = "This is a <test> string";
String newStr = StringEscapeUtils.escapeHtml4(str);
System.out.println(newStr);
無論選擇哪種方法,都可以有效地替換特殊字符并確保字符串的安全性。