본문 바로가기

IT-Consultant

month 달 전 일자 구하기


  Calendar cal = Calendar.getInstance ( );
  cal.add ( cal.MONTH, - month );
  SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
  return sdf.format( cal.getTime() );

간단한건데 꽤나 헤멨다.