竹墨残香烟花冷
2016-06-17 14:48
import java.util.Date ; public class HelloWorld{ public static void main(String[] args){ Date day = new Date(); System.out.println(day); } } //结果为 Fri Jun 17 06:47:06 UTC 2016 这是美国时间吧 如果要显示为我国时间 该怎么弄呢
JAVA中将UTC时间转换为本地时间的方法,其他的时区转换与此类似。
网上找的,可以试试
public static String utc2Local(String utcTime, String utcTimePatten,
String localTimePatten) {
SimpleDateFormat utcFormater = new SimpleDateFormat(utcTimePatten);
utcFormater.setTimeZone(TimeZone.getTimeZone("UTC"));//时区定义并进行时间获取
Date gpsUTCDate = null;
try {
gpsUTCDate = utcFormater.parse(utcTime);
} catch (ParseException e) {
e.printStackTrace();
}
SimpleDateFormat localFormater = new SimpleDateFormat(localTimePatten);
localFormater.setTimeZone(TimeZone.getDefault());
String localTime = localFormater.format(gpsUTCDate.getTime());
return localTime;
}
并没有
Data获取的你当时运行程序系统的信息
检查一下你运行系统的系统时间是不是已经到美国去了
Java入门第三季
409792 学习 · 4340 问题
相似问题