在普通Java中转义HTML符号的推荐方法是什么?
在以纯 Java 代码输出 HTML 时,是否有推荐的方法来转义 、 和 字符?(除了手动执行以下操作之外,即)。<
>
"
&
String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML";
String escaped = source.replace("<", "<").replace("&", "&"); // ...