“marca de tiempo hasta la fecha Java” Código de respuesta

Cómo convertir la marca de tiempo en el tiempo en 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
Healthy Heron

marca de tiempo hasta la fecha Java

String timestampToDate(long timestamp, String pattern)
    {
        Date timeD = new Date(timestamp);
        SimpleDateFormat sdf = new SimpleDateFormat(pattern);
        return sdf.format(timeD);
    }

//You can use this for both date or time.
// long timestamp = System.currentTimeMillis();
// eg: for date use it like this:
//timestampToDate(timestamp, "dd MMM, yyyy");
// eg: for time use it like this:
//timestampToDate(timestamp, "hh:mm a");
// eg: for both:
//timestampToDate(timestamp, "dd MMM, yyyy - hh:mm a");
MicroProgramer

Cadena de Java a la marca de tiempo

import java.sql.Timestamp;

public class StringToTimeStamp {
    public static void main(String[] args) {

        String dateTime = "2020-12-12 01:24:23";

        Timestamp timestamp = Timestamp.valueOf(dateTime);
        System.out.println(timestamp);
    }
}
Michelle Hofer

Respuestas similares a “marca de tiempo hasta la fecha Java”

Preguntas similares a “marca de tiempo hasta la fecha Java”

Más respuestas relacionadas con “marca de tiempo hasta la fecha Java” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código