用JAVA實現某個日期加一天
阿新 • • 發佈:2018-11-13
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
資料庫中的記錄的資料精確到秒,在頁面選擇某天,查不到資料,所以把某天的日期加一,查詢兩天之間的記錄。下面為日期加一天的方法:
public static String addOneday(String today){
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd");
try {
Date d = new Date(f.parse(today).getTime()+24*3600*1000);
return f.format(d);
}
catch(Exception ex) {
return "輸入格式錯誤";
}
}