复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21<%@ page language="java" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>回顾传统Web应用请求和响应特点【显示当前时间】</title> </head> <body> 当前时间:${requestScope.nowStr}<br/> <input id="buttonID" type="button" value="获取当前时间"/><p/> <script type="text/javascript"> //定位按钮,同时添加单击事件 document.getElementById("buttonID").onclick = function(){ //发送请求到服务器 var url = "${pageContext.request.contextPath}/TimeServlet"; window.location.href = url; } </script> </body> </html>
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28package cn.itcast.javaee.js.time; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * 回顾传统Web应用请求和响应特点【显示当前时间】 * @author AdminTC */ public class TimeServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException { //测试 System.out.println("GET"); //构造SimpleDateFormat对象 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //将当前日期按照指定格式输出成字符串 String nowStr = sdf.format(new Date()); //将结果绑定到request域对象中 request.setAttribute("nowStr",nowStr); //转发到06_time.jsp页面 request.getRequestDispatcher("/06_time.jsp").forward(request,response); } }
最后
以上就是大力铃铛最近收集整理的关于项目中获取服务器端时间在前台显示的全部内容,更多相关项目中获取服务器端时间在前台显示内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复