From cdc62a73afd3f9e7e2abec24b404367a3067cbc7 Mon Sep 17 00:00:00 2001 From: okou19900722 Date: Tue, 2 Jun 2020 14:14:30 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E8=8E=B7=E5=8F=96=E6=98=8E=E5=A4=A9?= =?UTF-8?q?=E6=97=A5=E6=9C=9F.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...0\216\345\244\251\346\227\245\346\234\237.md" | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 "\350\216\267\345\217\226\346\230\216\345\244\251\346\227\245\346\234\237.md" 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 0000000..883c573 --- /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 -- Gitee