我想从1436536800获得dd.MM.yyyy和hh:mm,但只有时间是正确的,日期是完全错误的。我真的不明白这应该如何运作
int dt = time.getInt("start")*1000;
Date date = new Date(dt);
startDate = dateFormat.format(date);
答案 0 :(得分:0)
假设时间是正确的,可能是您将乘以1,000的事实。按照您的方式创建日期时,需要几毫秒。您的输入可能已经是毫秒级了吗? (如果是这样,你目前的方法将约2分钟)
答案 1 :(得分:0)
Date date=new Date(1436536800);
SimpleDateFormat df2 = new SimpleDateFormat("dd.MM.yyyy");
String dateText = df2.format(date);
答案 2 :(得分:0)
如果time.getInt(“start”)是有效的unix时间戳,则必须在数字中添加“000”。示例:1436536800 * 1000 = 1436536800000。然后您可以使用时间戳来获取日期:
final Date date = new Date(Long.parseLong("1436536800000"));
SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy hh:mm");
System.out.println(sdf.format(date));
控制台出口:10.07.2015 09:00
答案 3 :(得分:0)