Skip to content

Instantly share code, notes, and snippets.

@zh-f
Last active September 1, 2016 01:24
Show Gist options
  • Save zh-f/cccff01479b66a7d882579b70eadfb3d to your computer and use it in GitHub Desktop.
Save zh-f/cccff01479b66a7d882579b70eadfb3d to your computer and use it in GitHub Desktop.
Get 1st day of a month in Java
private Date get1stDateOfCurrentMonth(){
Calendar c = Calendar.getInstance();
c.set(Calendar.DAY_OF_MONTH,1);
return c.getTime();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment