有没有直接的方式将1980年1月6日开始的一定时间转换为UTC格式,如YYYY / MM / DD HH:mm:ss?
编辑:这是代码工作:
private Date gpsInit;
//...
try{
String ds = "06/01/1980";
DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
gpsInit = df.parse(ds);
}
catch(ParseException e) {
System.out.println("Unable to parse January 6th 1980");
}
textField = new JFormattedTextField(format);
textField.setText(formatUTC(min));
//...
private String formatUTC(int timeValue) {
long diference = timeValue + gpsInit.getTime()/1000;
String pattern = "yyyy/MM/dd HH:mm:ss";
SimpleDateFormat utcFormat = new SimpleDateFormat(pattern);
Date utcNow = new Date(diference*1000);
return utcFormat.format(utcNow);
}
答案 0 :(得分:7)
类似的东西:
Date
日期Calendar
对象(通过06.01.1980 00:00:00
)
getTime()
以获取自EPOCH Date
对象。SimpleDateFormatter
)