import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class WeekBefore { public static void main(String[] args) { Calendar cl =Calendar.getInstance(); cl.setTime(new Date()); cl.add(Calendar.DAY_OF_MONTH, -7); SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String weekBefore =sdf.format(cl.getTime()); System.out.println("一周前时间:"+weekBefore); } }
时间: 2024-10-19 23:08:54