Calendar calen = Calendar.getInstance();//可以對每個時間域單獨修改
calen.setTime(new Date());
calen.set(Calendar.HOUR_OF_DAY, calen.get(Calendar.HOUR_OF_DAY) - 1);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time =format.format(calen.getTime());
System.out.println(time);