[Android/Java] Calendar to Date, Date to Calendar, String to Date, String to Calendar
저는 개인적으로 상당히 많이 상용하는 것들 입니다. 날짜등의 데이터는 long 타입으로 변환하여 간편하게 비교하거나, 일단 숫자이지만 문자형태로 저장하고 다시 변환.. 1. Calendar To Date Calendar calendar = Calendar.getInstance(); Date date = new Date(clendar.getTimeInMillis()); 2. Date to Calendar Date date = new Date(); Calendar calendar = Calendar.getInstance(); calendar.setTime(date); 3. String to Date SimpleDateFormat simple_format = new SimpleDateFormat("yyyy.M..