- Date와 SimpleDateFormat으로 간단하게 시간 표시하기
Date date = new Date();
SimpleDateFormat format1 = new SimpleDateFormat("hh시 mm분");
String time = format1.format(date);
시간더하기에는 두가지 방법이 있다.
- 1번째 방법) Calendar를 이용해 현재 시간에 30분 더한 시간을 구해보기
Date date = new Date();
SimpleDateFormat format = new SimpleDateFormat("hh시 mm분");
String time = format.format(date);
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.add(Calendar.MINUTE, 30);
String thirM = format.format(cal.getTime());
- 2번째 방법) DateTimeFormatter를 이용해 현재 시간에 30분 더한 시간을 구해보기
LocalTime date = LocalTime.now();
String time = date.format(DateTimeFormatter.ofPattern("H시 m분"));
String plustime = date.plusMinutes(30).format
DateTimeFormatter.ofPattern("H시 m분"));
'Java' 카테고리의 다른 글
[Java Dynamic Web Project ]압축 폴더 import하기 (0) | 2022.01.06 |
---|---|
[회원 정보 입력하기] (0) | 2022.01.04 |
[Chapter 10] Object클래스 (0) | 2021.12.15 |
[Chapter08]객체지향 프로그래밍2 (0) | 2021.12.14 |
[chapter04] 제어문 (0) | 2021.12.10 |