[java] sns 형태 시간 (몇분전)으로 변경하기
[java] sns 형태 시간 (몇분전)으로 변경하기 /** * SNS 형태의 시간으로 변환 * * 오늘 1분 이내 : 방금전 * 오늘 1시간 이내 : mm분 전 * 오늘 그외 : 오전오후 hh:mm * * @param stringDateTime yyyyMMddHHmmss */ public static String getSnsFormatTime(String stringDateTime) { if (!TextUtils.isEmpty(stringDateTime) && stringDateTime.length() == 14) { SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss"); try { Calendar calendar = Calendar.get..
2021.03.26