I want to use <% literal in JSP page. But it is throwing error. How to escape this syntax in JSP?


You can escape it using backslash character. Replace <% with <\%. Following example showcases the same.

<html>
   <head>
      <title>A Comment Test</title>
   </head>
   <body>
      <h2>Syntax: <\%= (new java.util.Date()).toLocaleString() %\></h2>
      <p>Today's date: <%= (new java.util.Date()).toLocaleString()%></p>
   </body>
</html>

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 30-Jul-2019

444 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements