다음 예는 브라우저에서 날짜를 인쇄하는 JSP 표현식을 보여줍니다 -
<html> <head> <title>A Comment Test</title> </head> <body> <p>Today's date: <%= (new java.util.Date()).toLocaleString()%></p> </body> </html>
위의 코드는 다음 결과를 생성합니다 -
Today's date: 11-Sep-2010 21:24:25
다음 예는 브라우저에서 날짜를 인쇄하는 JSP 표현식을 보여줍니다 -
<html> <head> <title>A Comment Test</title> </head> <body> <p>Today's date: <%= (new java.util.Date()).toLocaleString()%></p> </body> </html>
위의 코드는 다음 결과를 생성합니다 -
Today's date: 11-Sep-2010 21:24:25