Skip to content

Instantly share code, notes, and snippets.

@rmswimkktt
Created November 16, 2013 12:19
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 rmswimkktt/7499543 to your computer and use it in GitHub Desktop.
Save rmswimkktt/7499543 to your computer and use it in GitHub Desktop.
CalendarからDateに変換して文字列整形
calendar = Calendar.getInstance();
calendar.set(2013, 1 - 1, 1, 0, 0, 0);
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/M/d H:mm:ss");
String date = dateFormat.format(calendar.getTime());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment