java获取当前时间加半小时之后的时间
代码如下:Datenow=newDate();SimpleDateFormatsdf=newSimpleDateFormat("yyyy-MM-ddHH:mm");Tim...
代码如下:
Date now = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
TimeZone timeZoneChina = TimeZone.getTimeZone("Asia/Shanghai");//获取中国的时区
sdf.setTimeZone(timeZoneChina);
String time = sdf.format( now );
Date dt = sdf.parse(time);
Calendar rightNow = Calendar.getInstance();
rightNow.setTime(dt);
rightNow.add(Calendar.HOUR_OF_DAY,1);//时间减半小时
Date dt1 = rightNow.getTime();
String reStr = sdf.format(dt1);
return reStr;
如何修改?最好能简化一下代码,而且获取系统时间比准确时间少8小时,加了代码TimeZone timeZoneChina = TimeZone.getTimeZone("Asia/Shanghai");才能正常…… 展开
Date now = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
TimeZone timeZoneChina = TimeZone.getTimeZone("Asia/Shanghai");//获取中国的时区
sdf.setTimeZone(timeZoneChina);
String time = sdf.format( now );
Date dt = sdf.parse(time);
Calendar rightNow = Calendar.getInstance();
rightNow.setTime(dt);
rightNow.add(Calendar.HOUR_OF_DAY,1);//时间减半小时
Date dt1 = rightNow.getTime();
String reStr = sdf.format(dt1);
return reStr;
如何修改?最好能简化一下代码,而且获取系统时间比准确时间少8小时,加了代码TimeZone timeZoneChina = TimeZone.getTimeZone("Asia/Shanghai");才能正常…… 展开
9个回答
展开全部
java获取当前时间加半小时之后的时间:
SimpleDateFormat FORMAT2 = new SimpleDateFormat("HH:mm:ss");
SimpleDateFormat FORMAT2 = new SimpleDateFormat("HH:mm:ss");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class testDate {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
System.out.println(sdf.format(now.getTime()));
now.add(Calendar.MINUTE, 30);
System.out.println(sdf.format(now.getTime()));
}
}
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
System.out.println(sdf.format(now.getTime()));
now.add(Calendar.MINUTE, 30);
System.out.println(sdf.format(now.getTime()));
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
TimeUnit.MINITE.sleep(30);
return new Data();
return new Data();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询