我是靠谱客的博主 哭泣大叔,最近开发中收集的这篇文章主要介绍jsp中变量及方法的声明与使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本文实例讲述了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程序设计有所帮助。

最后

以上就是哭泣大叔为你收集整理的jsp中变量及方法的声明与使用的全部内容,希望文章能够帮你解决jsp中变量及方法的声明与使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(121)

评论列表共有 0 条评论

立即
投稿
返回
顶部