Skip to content

Instantly share code, notes, and snippets.

@springcome
Created November 11, 2015 09:47
Show Gist options
  • Save springcome/8980d73d3b38181bc7ac to your computer and use it in GitHub Desktop.
Save springcome/8980d73d3b38181bc7ac to your computer and use it in GitHub Desktop.
LastDateOfMonth, 달의 마지막일자
// 현재일자의 달에해당하는 마지막일자
Calendar.getInstance().getActualMaximum(Calendar.DAY_OF_MONTH);
// 설정일자에 해당하는 달의 마지막일자
Calendar cal = Calendar.getInstance();
cal.setTime(new Date); // 설정일자
int lastDate = cal.getActualMaximum(Calendar.DAY_OF_MONTH);
Copy link

ghost commented Nov 11, 2015

Focused dashboard,!Fine-grained permissions..?Repositoryne..!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment