日期:2014-05-16 浏览次数:20352 次
<% java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy年MM月dd日"); java.util.Date currentTime = new java.util.Date();//得到当前系统时间 String str_date1 = formatter.format(currentTime); //将日期时间格式化 String str_date2 = str_date1.toString(); //将Date型日期时间转换成字符串形式 %> <h4><%=str_date2 %></h4>
?