Computer >> 컴퓨터 >  >> 프로그램 작성 >> 프로그램 작성

JSP에서 XML 마크업으로 해석될 수 있는 문자를 이스케이프하는 방법은 무엇입니까?

<시간/>

fn:escapeXml() 함수는 XML 마크업으로 해석될 수 있는 문자를 이스케이프합니다.

구문

fn:escapeXml() 함수의 구문은 다음과 같습니다. -

java.lang.String escapeXml(java.lang.String)

예시

다음은 fn:escapeXml()의 기능을 설명하는 예입니다. 기능 -

<%@ taglib uri = "https://java.sun.com/jsp/jstl/core" prefix = "c" %>
<%@ taglib uri = "https://java.sun.com/jsp/jstl/functions" prefix = "fn" %>
<html>
   <head>
      <title>Using JSTL Functions</title>
   </head>
   <body>
      <c:set var = "string1" value = "This is first String."/>
      <c:set var = "string2" value = "This <abc>is second String.</abc>"/>
      <p>With escapeXml() Function:</p>
      <p>string (1) : ${fn:escapeXml(string1)}</p>
      <p>string (2) : ${fn:escapeXml(string2)}</p>
      <p>Without escapeXml() Function:</p>
      <p>string (1) : ${string1}</p>
      <p>string (2) : ${string2}</p>
   </body>
</html>

다음 결과를 받게 됩니다 -

With escapeXml() Function:
string (1) : This is first String.
string (2) : This <abc>is second String.</abc>
Without escapeXml() Function −
string (1) : This is first String.
string (2) : This is second String.