在jsp中如何取得明天的日期?谢谢帮忙!
// 明天日期
java.util.Date myDate=new java.util.Date();
long myTime=(myDate.getTime()/1000)+60*24*60;
myDate.setTime(myTime*1000);
String mDate=formatter.format(myDate);
out.println(mDate);
out.println("<br>");