Answers for "java new date to timestamp"

1

localdate to timestamp in java

Timestamp timestamp = Timestamp.valueOf(localDate.atStartOfDay());
Posted by: Guest on December-14-2020
0

How to convert timestamp to time in java

//Timestamp to HH:mm:ss format
Long Timestamp = 1633304782;
Date timeD = new Date(Timestamp * 1000);
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");

String Time = sdf.format(timeD);

//RESULT this code convert 1633304782 to 05:46:33
Posted by: Guest on October-04-2021
-1

date to timestamp java

All you need to do is change the string within the java.text.SimpleDateFormat constructor to: "MM-dd-yyyy HH:mm:ss".

Just use the appropriate letters to build the above string to match your input date.
Posted by: Guest on March-05-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language