项目中获取服务器端时间在前台显示

<%@ 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>

package 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);
	}
}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值