为什么显示年份会不对???谢谢!!!
<%@ page import="java.util.*" %><%@ page contentType="text/html; charset=gb2312" %>
<html>
<body>
你好,今天是
<% Date today=new Date(); %>
<%=today.getYear()%>年
<%=today.getMonth()%>月
<%=today.getDate()%>号,星期<%=today.getDay()%>
</body>
</html>
其他的都正常 但是显示年份确是108
为什么会这样?
怎末修改?