Skip to content

Instantly share code, notes, and snippets.

@KanshuYokoo
Created August 15, 2018 06:03
Show Gist options
  • Save KanshuYokoo/eb856b7939b7617dea9483fc9a4ec71e to your computer and use it in GitHub Desktop.
Save KanshuYokoo/eb856b7939b7617dea9483fc9a4ec71e to your computer and use it in GitHub Desktop.
java data format
Date currentTime = myCalendar.getTime();
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyyMMdd");
SimpleDateFormat timeFormatter = new SimpleDateFormat("HHmm");
timeToSend = timeFormatter.format(currentTime);
dateToSend = dateFormatter.format(currentTime);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment