By: Saravanan in JSP Tutorials on 2010年01月01日 [フレーム]
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[2]);
%>
</body>
</html>
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Most Viewed Articles (in JSP )
Show a calendar for user input in JSP
Encrypting Passwords in Tomcat using Servlets
JSP Tags for SQL to connect to a database
Steps to get a Free SSL certificate for your Tomcat
Uploading a file to a server using JSP
Server Side Programming using JSP
Latest Articles (in JSP)
Show a calendar for user input in JSP
Steps to get a Free SSL certificate for your Tomcat
Encrypting Passwords in Tomcat using Servlets
JSP Tags for SQL to connect to a database
Uploading a file to a server using JSP
Uploading an Image to a Database using JSP
A JSP page that gets properties from a bean
Scriptlets and Expressions in JSP
The taglib, tag, include, attribute and the variable Directive in JSP
Show a calendar for user input in JSP
Encrypting Passwords in Tomcat using Servlets
Steps to get a Free SSL certificate for your Tomcat
JSP Tags for SQL to connect to a database
Uploading an Image to a Database using JSP
Uploading a file to a server using JSP
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate