<!-- 显示任意年、月的日历,可选择不同的年、月。--> 
<%@ page language="java" import="java.util.*" %> 
<%! String year; 
String month; 
%> 
<% month=request.getParameter("month"); 
year =request.getParameter("year"); 
%> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
<title>日历</title> 
<script Language="JavaScript"> 
<!-- 
function changeMonth() 

  var mm="seldate.jsp?month="+document.sm.elements[0].selectedIndex+"&year="+<%=year%>; 
  window.open(mm,"_self"); 
} function selEnd(strYear,strMonth,strDay)
{ var strDate=strYear+"-"+strMonth+"-"+strDay;
 // alert(strDate);
  parent.selEndDate(strDate);
}function submit()
{
   document.sm.submit;
}
//--></script> 
</head> 
<%!String days[]; %> 
<% 
days=new String[42]; 
for(int i=0;i<42;i++) 

  days[i]=""; 

%> 
<% 
Calendar thisMonth=Calendar.getInstance(); 
if(month!=null&&(!month.equals("null"))) 
  thisMonth.set(Calendar.MONTH, Integer.parseInt(month) ); 
if(year!=null&&(!year.equals("null"))) 
  thisMonth.set(Calendar.YEAR, Integer.parseInt(year) ); 
year=String.valueOf(thisMonth.get(Calendar.YEAR)); 
month=String.valueOf(thisMonth.get(Calendar.MONTH));
thisMonth.setFirstDayOfWeek(Calendar.SUNDAY);
thisMonth.set(Calendar.DAY_OF_MONTH,1);
int firstIndex=thisMonth.get(Calendar.DAY_OF_WEEK)-1;
int maxIndex=thisMonth.getActualMaximum(Calendar.DAY_OF_MONTH); 
for(int i=0;i<maxIndex;i++)

  days[firstIndex+i]=String.valueOf(i+1); 

%> 
<body > 
<FORM name="sm" method="post" action="seldate.jsp"> 
<table border="0" width="168" height="81"> 
&nbsp;&nbsp;&nbsp;<%=year%>年<%=Integer.parseInt(month)+1%> 月
<div align=center> 
<tr> 
<th width="25" height="16" bgcolor="#d5634c"><font color="white">日</font> 
</th> 
<th width="25" height="16" bgcolor="#d5634c"><font color="white">一</font> </th> 
<th width="25" height="16" bgcolor="#d5634c"><font color="white">二</font> </th> 
<th width="25" height="16" bgcolor="#d5634c"><font color="white">三</font> </th> 
<th width="25" height="16" bgcolor="#d5634c"><font color="white">四</font> </th> 
<th width="25" height="16" bgcolor="#d5634c"><font color="white">五</font> </th> 
<th width="25" height="16" bgcolor="#d5634c"><font color="white">六</font></th> 
</tr> 
<% for(int j=0;j<6;j++) { %> 
<tr> 
<%   for(int i=j*7;i<(j+1)*7;i++) { %> 
<td width="15%" height="16" bgcolor="#7687b4" valign="middle" align="center" style="CURSOR: hand"  onclick="selEnd('<%=year%>','<%=Integer.parseInt(month)+1%>','<%=days[i]%>')"> 
<font color="white"><%=days[i]%></font>
</td> 
<% } %> 
</tr> 
<% } %> 
</div> 
</table> 
<table border="0" width="168" height="20"> 
<tr> 
<td width=30%><select name="month" size="1" onchange="changeMonth()" > 
<option value="0">一月</option> 
<option value="1">二月</option> 
<option value="2">三月</option> 
<option value="3">四月</option> 
<option value="4">五月</option> 
<option value="5">六月</option> 
<option value="6">七月</option> 
<option value="7">八月</option> 
<option value="8">九月</option> 
<option value="9">十月</option> 
<option value="10">十一月</option> 
<option value="11">十二月</option> 
</select></td> 
<td width=28%><input type=text name="year" value=<%=year%> size=4 maxlength=4></td> 
<td>年</td> 
<td width=28%><IMG onclick="submit()" src="/zenith/images/submit.gif" style="CURSOR: hand" ></td> 
</tr> 
</table> 
</FORM> 
<script Language="JavaScript"> 
<!-- 
document.sm.month.options.selectedIndex=<%=month%>; 
//--> 
</script>
</body>
</html>

解决方案 »

  1.   

    在mysql中就有这样得函数!
    你可以试试!
    select dayofmonth(“2001-10-09”);
    就可以返回当时的日期是本月的第几天!
      

  2.   

    happynet(快乐数据) mysql有没有办法支持事物处理啊??就象autocommite只类的东西???
      

  3.   

    多看看Calendar and SimpleDateFormat 这两个类。
      

  4.   

    public static int daysInMonth(GregorianCalendar c) {
      int [] daysInMonths = {31,28,31,30,31,30,31,31,30,31,30,31};
      daysInMonths[1] += c.isLeapYear(c.get(GregorianCalendar.YEAR)) ? 1 : 0;
      return daysInMonths[c.get(GregorianCalendar.MONTH)];
      }