在Java中转义HTML的推荐方法
有没有逃脱推荐的方式<,>,"和&字符时输出HTML中普通的Java代码?(也就是说,除了手动执行以下操作之外)。 String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML"; String escaped = source.replace("<", "&lt;").replace("&", "&amp;"); // ...