해당코드를 사용 했는데 Sparrow 취약점에 걸렸다... 더이상 사용하지 않는다능... Date()
String currentDateTime = DateFormat.getDateTimeInstance().format(new Date());
대체코드
LocalDateTime dt = LocalDateTime.now();
DateTimeFormatter dtf = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT);
String currentDateTime = dt.format(DateTimeFormatter.ofPattern("yyyy-MM-dd, HH:mm:ss"));
'Android(Java)' 카테고리의 다른 글
[Java] AsyncTask Deplecated Observable.fromCallable() 로 대체하기 (0) | 2024.12.02 |
---|---|
[JAVA] RxJava / retrofit2 이용한 API 서버 연동 (1) | 2024.11.27 |
[Java] 하이브리드앱 웹페이지 PopupView에서 스크롤 시 Y값 0으로만 나올경우 (0) | 2024.10.24 |
[Java] FileProvider 설정 / 파일 저장 (2) | 2024.10.18 |
[Java] uses-feature 란? (0) | 2024.10.18 |