날짜형식1 [안드로이드] 현재 날짜 및 시간 출력하기 안드로이드에서 현재 날짜 및 시간을 출력해주기 위해서 1. Date객체 2. Calender Class 3. System Class 이 3가지가 대표적이고 저는 대부분 Date를 사용합니다. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //날짜 및 시간 형식 지정 SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //Date 객체 사용 Date date = new Date(); String time1 = sim.. 2020. 6. 15. 이전 1 다음