“String java ke cap waktu” Kode Jawaban

Cara mengubah cap waktu menjadi waktu di 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

cap waktu sampai saat ini 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

String java ke cap waktu

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

Jawaban yang mirip dengan “String java ke cap waktu”

Pertanyaan yang mirip dengan “String java ke cap waktu”

Lebih banyak jawaban terkait untuk “String java ke cap waktu” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya