Skip to content

Instantly share code, notes, and snippets.

@iridiumcao
Last active July 8, 2019 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iridiumcao/587e0656aff8f80ecfd4 to your computer and use it in GitHub Desktop.
Save iridiumcao/587e0656aff8f80ecfd4 to your computer and use it in GitHub Desktop.
得到未来15分钟后的时间
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