发布于 2016-08-20 22:04:21 | 152 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的JSP教程,程序狗速度看过来!

JSP JAVA公司的WEB开发编程语言

JSP全名为Java Server Pages - java服务器页面是由Sun Microsystems公司倡导、许多公司参与一起建立的一种动态网页技术标准。JSP技术有点类似ASP技术,它是在传统的网页HTML(标准通用标记语言的子集)文件(*.htm,*.html)中插入Java程序段(Scriptlet)和JSP标记(tag),从而形成JSP文件,后缀名为(*.jsp)。


这篇文章主要介绍了jsp中变量及方法的声明与使用,以实例形式分析了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程序设计有所帮助。



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务