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+"https://www.jb51.net/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="https://www.jb51.net/<%=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 type="text/css" href="https://www.jb51.net/styles.css"> --> </head> <body> <h1>演示声明的使用</h1> <%--声明变量--%> <%!long i = 1,j=1; %> <%!String; %> <%!String name2="官林辉"; %> <%--声明方法--%> <%!public String sayHello(String who) { return "您好:"+who; } %> <p> <% out.println(sayHello(name)); out.println("<br>"); out.println("您是第"+i+"个访问本网站的用户!"); i++; %> <% Date time = new Date(); out.write(time.toLocaleString()); %> </p> <p> <%=sayHello(name2)%> <br> 您是第<%= j%>个访问本网站的用户! <%j++;%> </p> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzjpss.html