Created
February 23, 2015 19:21
-
-
Save mustafasevgi/ba0ac3eb11f0a6e5e970 to your computer and use it in GitHub Desktop.
get hour 24 hours format
This file contains 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
Date now = new Date(); | |
SimpleDateFormat sdf = new SimpleDateFormat("K:mm a"); | |
String formattedTime = sdf.format(now); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment