欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp中变量及方法的声明与使用

程序员文章站 2023-10-27 15:22:16
本文实例讲述了jsp中变量及方法的声明与使用。分享给大家供大家参考,具体如下: <%@ page language="java" import="java....

本文实例讲述了jsp中变量及方法的声明与使用。分享给大家供大家参考,具体如下:

<%@ page language="java" import="java.util.*" contenttype="text/html;charset=gbk"%>
<%
string path = request.getcontextpath();
string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/";
%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en">
<html>
 <head>
  <base href="<%=basepath%>">
  <title>jsp 中声明的使用</title>
 <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="cache-control" content="no-cache">
 <meta http-equiv="expires" content="0">  
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
 <meta http-equiv="description" content="this is my page">
 <!--
 <link rel="stylesheet" type="text/css" href="styles.css">
 -->
 </head>
 <body>
  <h1 align="center">演示声明的使用</h1>
  <%--声明变量--%>
  <%!long i = 1,j=1; %>
  <%!string name="陈宁"; %>
  <%!string name2="官林辉"; %>
  <%--声明方法--%>
  <%!public string sayhello(string who)
   {
   return "您好:"+who;
   }
   %>
   <p align="center">
   <%
   out.println(sayhello(name));
   out.println("<br>");
   out.println("您是第"+i+"个访问本网站的用户!");
   i++;
   %>
   <% date time = new date();
    out.write(time.tolocalestring());
   %>
   </p>
   <p align="center">
   <%=sayhello(name2)%> 
   <br>
   您是第<%= j%>个访问本网站的用户!
   <%j++;%>
   </p>
 </body>
</html>

希望本文所述对大家jsp程序设计有所帮助。