java后台传当前时间给jsp接收怎么实现

2024-11-23 21:05:25
推荐回答(4个)
回答1:

request.setAttribute("toDate",toDate);
request.setAttribute("双引号里是参数名,页面滚升搭上调用这个参数名"大拿,参数笑扮值);
${ toDate}页面上不用双引号就可以

回答2:

java后台传当前时间给jsp,主要的方式是将数据放在request对象中,然后在另一个页面拿到这个数据即可,代码如下:
String name=“当前时间”冲码;
request.setAttribute(name);
B.jsp :
B页面通过如下代码接收
<%
String name=request.getAttribute("name");
out.println("接收到:"+name);
%>
说明散首哪:主要芹陵是在java代码中,把这个时间给set进去

回答3:

要是仅仅取时间,JSP上胡消闹使桥答用
<%

java.util.Date date =new java.util.Date();
java.text.SimpleDateFormat sim =new java.text.SimpleDateFormat("yy-MM-dd");
String toDate =sim.format("裤罩date");
out.println(toDate);

%>

回答4:

你好!!

request.setAttribute("toDate",toDate);