你可以使用SimlpeDateFormat来格式化日期,如下所示:
long unixSeconds = 1372339860;// convert seconds to millisecondsDate date = new java.util.Date(unixSeconds*1000L); // the format of your dateSimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss z"); // give a timezone reference for formatting (see comment at the bottom)sdf.setTimeZone(java.util.TimeZone.getTimeZone("GMT-4")); String formattedDate = sdf.format(date);System.out.println(formattedDate);
如果使用的模式SimpleDateFormat非常灵活,则可以根据给定的特定模式,在javadocs中检入可用于产生不同格式的所有变体Date。http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
- 因为a
Date
提供了getTime()
一种返回自EPOC以来的毫秒数的方法,所以要求你指定SimpleDateFormat
一个时区以根据你的时区正确格式化日期,否则它将使用JVM的默认时区(如果配置得当,它将是正确的) )
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)