JSP得到当前时间,只得到日期即可
JSP得到当前时间,只得到日期即可,即yyyy年mm月dd日
怎么做,求解答,巨谢!
------解决方案-------------------- Date today=new Date();
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
System.out.println(sdf.format(today));
引包 加上<% 即可
------解决方案--------------------Date today=new Date();
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
sdf.format(today);
------解决方案--------------------楼上正解~!楼主,你弄弄基础吧,盖房子需要好的地基~!
------解决方案--------------------一定要记得导包
<%@ page import="java.util.Date"%>