Java 코드에서 HTML 기호의 효율적인 이스케이프
Java에서 HTML 콘텐츠를 표시할 때 <, >와 같은 특정 문자를 이스케이프해야 합니다. ;, " 및 &는 악성 코드 실행을 방지합니다. 그러나 수동 문자열 교체는 번거롭고 번거로울 수 있습니다. 오류가 발생하기 쉽습니다.
권장 방법: Apache Commons Lang의 StringEscapeUtils
Apache Commons Lang 라이브러리는 StringEscapeUtils 클래스를 사용하여 HTML 문자를 이스케이프하기 위한 포괄적인 솔루션을 제공합니다. 여러 문자를 동시에 이스케이프 및 이스케이프 해제하는 효율적인 방법으로 코드 가독성을 보장하고 정확성.
사용법:
StringEscapeUtils를 사용하여 Java에서 HTML 문자를 이스케이프하려면 다음 간단한 단계를 따르세요.
필수 가져오기 클래스:
import static org.apache.commons.lang.StringEscapeUtils.escapeHtml;
입력 문자열 정의:
String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML";
Escape HTML 문자:
String escaped = escapeHtml(source);
예:
StringEscapeUtils 클래스를 사용하면 아래와 같이 쉽게 HTML 문자를 이스케이프할 수 있습니다.
import static org.apache.commons.lang.StringEscapeUtils.escapeHtml; // ... String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML"; String escaped = escapeHtml(source); System.out.println(escaped); // Output: The less than sign (<) and ampersand (&) must be escaped before using them in HTML
Apache Commons Lang 참고사항 버전 3:
Apache Commons Lang 버전 3의 경우 escapeHtml 대신 escapeHtml4 메소드를 사용하세요.
import static org.apache.commons.lang3.StringEscapeUtils.escapeHtml4; // ... String escaped = escapeHtml4(source);
위 내용은 Java에서 HTML 기호를 효율적으로 이스케이프하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!