How to create an array and method in JSP
By: Saravanan
In this tutorial we are going to see how to create an array and method in JSP.
We have to use the scriptlet tag and declaration tag. We can write java comment
inside a scriptlet tag. And we can declare the variables inside a declaration tag.
Comments in JSP page
<html>
<head>
<title>Comments in a JSP</title>
</head>
<body>
<% // This is scriptlet tag. Here We can use Java comments. It's copied
into the generated servlet %>
<%-- This is commentline tag. Here we can use JSP comment. It's not copied
to the servlet or the output --%>
</body>
</html>
Creating a Method
<html>
<head>
<title>Method Creating</title>
</head>
<body>
<H1>Method Creating</H1>
<%!
int sum(int value1, int value2)
{
return value1 + value2;
}
%>
<%
out.println("value1+ value2 = " + sum(9, 7));
%>
</body>
</html>
Creating an Array
<html>
<head>
<title>Creating an Array </title>
</head>
<body>
<H1>Creating an Array </H1>
<%
double salary[];
salary = new double[100];
salary[2] = 500.54;
out.println("salary 2 holds $" + salary[3]);
%>
</body>
</html>
Archived Comments
Comment on this tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Java program to get location meta data from an image
Program using concept of byte long short and int in java
Update contents of a file within a jar file
Tomcat and httpd configured in port 8080 and 80
Count number of vowels, consonants and digits in a String in Java
Student marks calculation program in Java
Calculate gross salary in Java
Calculate average sale of the week in Java
Vector in Java - Sample Program