AdDateUtil中的getTime方法
Opened this issue · 0 comments
renyanxu2000 commented
SimpleDateFormat format = new SimpleDateFormat(DATE_FORMAT_HMS, Locale.CHINA);
format.setTimeZone(TimeZone.getTimeZone("GMT+00:00"));
String strUserTime = format.format(ms);
这是一个种不错的方法,注意一定要加上中间那句时区,不然会多出8个小时。
还有你的那个方法不显示小时。 @wzgiceman