Calendar를 이용하여 현재 날짜 조회 및 현재 날짜 기준으로 일주일 전 날짜(한 달전 날짜) 조회 하는 방법을 소개하겠습니다. 1. 현재 날짜 구하기 Calendar c = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); //날짜 형식을 지정하기 위함. String today = sdf.format(c.getTime()); System.out.println("오늘 날짜 : " + today); 2. 일주일 전 날짜 구하기 Calendar c = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); c.add(c.D..