简体   繁体   中英

convert date to timestamp UTC

I am new to Java and wanted to know how can I convert date to timestamp like

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 if I pass a date to it and vice versa..

I searched here on StackOverflow but none of the questions have solved my problem

I need to use this timestamp in my JSON as a parameter on the highcharts API to show points

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

To convert a date to a timestamp:

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();

To convert a timestamp to a date:

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"

Hope this helps!

final Date toTimestamp = new Date();
final long timestamp = toTimestamp.getTime();

final Date fromTimestamp = new Date(timestamp);

?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM