diff --git "a/\350\216\267\345\217\226\346\230\216\345\244\251\346\227\245\346\234\237.md" "b/\350\216\267\345\217\226\346\230\216\345\244\251\346\227\245\346\234\237.md" new file mode 100644 index 0000000000000000000000000000000000000000..883c57318d85277d55de4b3dc920bcb9d5ff34c9 --- /dev/null +++ "b/\350\216\267\345\217\226\346\230\216\345\244\251\346\227\245\346\234\237.md" @@ -0,0 +1,16 @@ +摘抄自[红薯微博](https://weibo.com/1645758887/FxklVBlMp) + +```java +/** + * 获取下一天的日期 + * @return + */ +public static Date getNextDay() { + try { + Thread.sleep(24 * 60 * 60 * 1000); + }catch (InterruptedException e){ + e.printStackTrace(); + } + return new Date(); +} +``` \ No newline at end of file