Created
September 12, 2019 06:51
-
-
Save sandeepyohans/88fd0d7259c92175e9d3b23144fbe87d to your computer and use it in GitHub Desktop.
Get Current Month
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
DateFormat dateFormat = new SimpleDateFormat("MM"); | |
Date date = new Date(); | |
dateFormat.format(date); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment