Answers for "how to go from timestamp to java"

3

java timestamp from string

//parse ISO local date time String
LocalDateTime timestamp=LocalDateTime.parse("2007-12-03T10:15:30");
//parse custom String
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy MM dd HH:mm");
LocalDate parsedDate = LocalDate.parse("1970 01 01 00:00", formatter);
Posted by: Guest on April-14-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 "how to go from timestamp to java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language