这是一个简单的单元测试,用于说明我遇到的问题。
package mytest;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
import org.apache.commons.lang3.time.FastDateFormat;
import org.junit.Test;
import static org.junit.Assert.*;
public class DateTests {
private static final String DATE_VALUE = "2016-03-11T15:47:02.123Z";
private static final String PATTERN = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
@Test
public void utcTest() throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat(PATTERN);
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
Date date = sdf.parse(DATE_VALUE)
FastDateFormat fdf = FastDateFormat.getInstance(PATTERN);
assertEquals(DATE_VALUE, fdf.format(date));
}
}
我的计算机处于中央时间,这意味着当我运行此代码时,断言失败,因为
fdf
将日期格式设置为9 AM而不是3 PM。我该如何用UTC格式化呢? 最佳答案
尝试这样做:
FastDateFormat fdf = FastDateFormat.getInstance(PATTERN, TimeZone.getTimeZone("UTC"));
关于java - 如何使用FastDateFormat在UTC中格式化时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35947894/