1

我是 Java 新手,想知道如何将日期转换为时间戳

http://www.timestampconvert.com/?go1=true&m=08&d=06&y=2007&hours=05&min=30&sec=000&Submit=++++++Convert+to+timestamp+++++&offset=-5.5 如果我通过约会,反之亦然..

我在 StackOverflow 上搜索了这里,但没有一个问题解决了我的问题

我需要在我的 JSON 中使用这个时间戳作为 highcharts API 上的参数来显示点

http://www.highcharts.com/samples/data/jsonp.php?filename=msft-c.json&callback=

4

2 回答 2

1

要将日期转换为时间戳:

String date = "2014-08-03 15:20:10"; //Replace with your value
Timestamp timestamp = Timestamp.valueOf(date);
// Convert timestamp to long for use
long timeParameter = timestamp.getTime();

要将时间戳转换为日期:

long timeParameter = 1186358400; //Replace with your value
Timestamp timestamp = new Timestamp(timeParameter);
Date date = new Date(timestamp.getTime());
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String textDate = df.format(date); // This gives a string like "2014-08-03 15:20:10"

希望这可以帮助!

于 2014-08-03T15:03:05.697 回答
-1
final Date toTimestamp = new Date();
final long timestamp = toTimestamp.getTime();

final Date fromTimestamp = new Date(timestamp);

?

于 2014-08-03T14:50:57.667 回答