|
@@ -195,7 +195,7 @@ public class LifeCenterFunction {
|
|
|
public static String changeJuminToBirthday(String dateStr) {
|
|
|
String resDate = "";
|
|
|
try {
|
|
|
- SimpleDateFormat df = new SimpleDateFormat("yymmdd");
|
|
|
+ SimpleDateFormat df = new SimpleDateFormat("yyyymmdd");
|
|
|
Date date = date = df.parse(dateStr);
|
|
|
SimpleDateFormat df1 = new SimpleDateFormat("yyyy년 mm월 dd일");
|
|
|
resDate = df1.format(date);
|