作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面的代码我尝试过但没有成功..
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
import java.sql.Timestamp;
public class TimestampTest {
public static void main(String[] args){
long unixSeconds = 1429582984839L; // suffix L
java.util.Date date= new java.util.Date(unixSeconds*1000L);
System.out.println(new Timestamp(date.getTime()));
}}
预期输出:21/04/2015 03:15 AM 以这种格式......但我得到 47271-09-06 09:40:39.0
最佳答案
long unixSeconds = 1429582984839;
Date date1 = new Date(unixSeconds);
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy h:mm:ss a");
sdf.setTimeZone(TimeZone.getTimeZone("GMT+1"));
String formattedDate = sdf.format(date1);
System.out.println(formattedDate);
关于java - 如何在java中将Bigint类型转换为时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29838359/
我是一名优秀的程序员,十分优秀!