JSP Unix Time


JSP Unix Time


September 11, 2021

example java server jsp

This example uses JSP to show the current Unix time.

<!DOCTYPE html>
<html>
  <head>
    <title>Unix Time</title>
  </head>
  <body>
    <h1>Unix Time</h1>
    <p>The current Unix time is: <%= System.currentTimeMillis() %></p>
    <hr>
  <p>Click <a href="https://en.wikipedia.org/wiki/Unix_time">here</a> to learn more.</p>
  </body>
</html>

unix time



JSP Examples

Comments

Happy Coding is a community of folks just like you learning about coding.
Do you have a comment or question? Post it here!

Comments are powered by the Happy Coding forum. This page has a corresponding forum post, and replies to that post show up as comments here. Click the button above to go to the forum to post a comment!