오늘 날짜 얻어 내기
2024. 11. 7. 22:39ㆍJava
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class DateExample {
public static void main(String[] args) {
LocalDate today = LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
String formattedDate = today.format(formatter);
System.out.println("Today's date in yyyymmdd format: " + formattedDate);
}
}
'Java' 카테고리의 다른 글
List<Map<String, Object>>에 item 추가하기 (1) | 2024.11.12 |
---|---|
hostname 정보 가져오기 (0) | 2024.11.12 |
List<Map<String, Object>>에서 특정 컬럼을 List로 뽑아내기 (0) | 2024.11.07 |
List<String>에서 중복 데이터 처리 방법 (0) | 2024.11.07 |
예외가 발생해도 계속 진행하고, 마지막에 예외 발생하기 (0) | 2024.11.06 |