JSP Zoo


JSP Zoo


September 11, 2021

example java server jsp

This example uses JSP to show a list of animals.

<% String[] animals = {
  "lions", "tigers", "bears", "lizards", "zebras",
  "kangaroos", "elephants", "cows", "monkeys", "anteaters"
  }; %>
<!DOCTYPE html>
<html>
  <head>
    <title>JSP Zoo</title>
  </head>
  <body>
    <h1>JSP Zoo</h1>
    <p>Here are the animals we visited at the zoo:</p>
    <% for(int i = 0; i < animals.length; i++){ %>
      <p><%= i+1 %>: <%= animals[i] %></p>
    <% } %>
  </body>
</html>

list of animals



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!