Notice
Recent Posts
Recent Comments
Link
목록datetimeformatter (1)
개발 무지렁이
[Java] 날짜 시간 클래스 LocalDateTime과 형식클래스 DateTimeFormatter
Date 객체와 SimpleDateFormat Date now = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy,MM.dd HH:mm:ss"); sdf.format(now) Date() 생성자는 컴퓨터의 현재 날짜를 읽어 Date객체로 만든다. public class DateExample { public static void main(String[] args) { Date now = new Date(); String strNow = now.toString(); System.out.println(strNow); //Tue Aug 09 00:55:51 KST 2023 SimpleDateFormat sdf = new SimpleDateFormat..
Backend/자바
2023. 8. 9. 02:53