Last active
July 8, 2019 22:21
-
-
Save iridiumcao/587e0656aff8f80ecfd4 to your computer and use it in GitHub Desktop.
得到未来15分钟后的时间
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Calendar cal = Calendar.getInstance(); | |
cal.add(Calendar.MINUTE, 15); | |
cal.getTime(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment