일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- spring
- spring boot
- java9
- React
- SpringBoot
- generate entity
- header setting
- dto valid
- Next.js 14
- custom valid
- ollama langflow
- 도커
- docker
- 리눅스
- 초기 세팅
- java8
- JavaScript
- 초기 구축
- generate pojos
- NextJS
- docker 설치
- JPA
- jvm
- jpa entity자동
- memcached
- 헤더 설정
- swagger
- CentOS6
- Java
- MySQL
- Today
- Total
개발자의 길
[java] 오늘기준 월요일,일요일 구하기, 주 차 구하기, 년월 주 차 받아서 해당 주 월,일요일 구하기 본문
//현재 날짜 월요일
public static String getCurMonday(){
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy.MM.dd");
Calendar c = Calendar.getInstance();
c.set(Calendar.DAY_OF_WEEK,Calendar.MONDAY);
return formatter.format(c.getTime());
}
//현재 날짜 일요일
public static String getCurSunday(){
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy.MM.dd");
Calendar c = Calendar.getInstance();
c.set(Calendar.DAY_OF_WEEK,Calendar.SUNDAY);
c.add(c.DATE,7);
return formatter.format(c.getTime());
}
//현재 날짜 주차
public static String getWeek(){
Calendar c = Calendar.getInstance();
String week = String.valueOf(c.get(Calendar.WEEK_OF_MONTH));
return week;
}
//특정 년,월,주 차에 월요일 구하기
public static String getMonday(String yyyy,String mm, String wk){
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy.MM.dd");
Calendar c = Calendar.getInstance();
int y=Integer.parseInt(yyyy);
int m=Integer.parseInt(mm)-1;
int w=Integer.parseInt(wk);
c.set(Calendar.YEAR,y);
c.set(Calendar.MONTH,m);
c.set(Calendar.WEEK_OF_MONTH,w);
c.set(Calendar.DAY_OF_WEEK,Calendar.MONDAY);
return formatter.format(c.getTime());
}
//특정 년,월,주 차에 일요일 구하기
public static String getSunday(String yyyy,String mm, String wk){
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy.MM.dd");
Calendar c = Calendar.getInstance();
int y=Integer.parseInt(yyyy);
int m=Integer.parseInt(mm)-1;
int w=Integer.parseInt(wk);
c.set(Calendar.YEAR,y);
c.set(Calendar.MONTH,m);
c.set(Calendar.WEEK_OF_MONTH,w);
c.set(Calendar.DAY_OF_WEEK,Calendar.SUNDAY);
c.add(c.DATE,7);
return formatter.format(c.getTime());
}
'4. JAVA' 카테고리의 다른 글
[java] AES 암호화,복호화 (0) | 2016.04.19 |
---|---|
[java] csv 파일 콤마 자르기 - 배열 (0) | 2016.04.19 |
[java] 해당 월에 각 주의 시작일과 끝일 구하기 (1) | 2015.07.01 |
[java] jsonArray,jsonObject 이용하여 parse 파싱 (0) | 2015.06.23 |
[java] XML parse (파싱) (0) | 2015.06.09 |
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.