jsp中变量及方法的声明与使用
本文实例讲述了jsp中变量及方法的声明与使用。分享给大家供大家参考,具体如下:
<%@pagelanguage="java"import="java.util.*"contentType="text/html;charset=GBK"%>
<%
Stringpath=request.getContextPath();
StringbasePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>
<basehref="<%=basePath%>">
<title>JSP中声明的使用</title>
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage">
<!--
<linkrel="stylesheet"type="text/css"href="styles.css">
-->
</head>
<body>
<h1align="center">演示声明的使用</h1>
<%--声明变量--%>
<%!longi=1,j=1;%>
<%!Stringname="陈宁";%>
<%!Stringname2="官林辉";%>
<%--声明方法--%>
<%!publicStringsayHello(Stringwho)
{
return"您好:"+who;
}
%>
<palign="center">
<%
out.println(sayHello(name));
out.println("<br>");
out.println("您是第"+i+"个访问本网站的用户!");
i++;
%>
<%Datetime=newDate();
out.write(time.toLocaleString());
%>
</p>
<palign="center">
<%=sayHello(name2)%>
<br>
您是第<%=j%>个访问本网站的用户!
<%j++;%>
</p>
</body>
</html>
希望本文所述对大家jsp程序设计有所帮助。