SMALL

String dd = "Sun, 22 Oct 2017 15:00:00 GMT";

String o11 ="";

위 형식을 Date 형식으로 바꿀것이다


SimpleDateFormat org_format = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss" ,Locale.ENGLISH);

SimpleDateFormat new_format = new SimpleDateFormat("yyyy-MM-dd");





Date dt = org_format.parse(dd);

o11 =  org_format.format(dt);

dd =  new_format.format(dt);


System.out.println(o11);

System.out.println(dd);




결과 :

Sun, 22 Oct 2017 15:00:00

2017-10-22


이렇게 출력된다 date형변환 Data의 형식에 맞춰줘야 형변환됨

예)EEE, dd MMM yyyy HH 위에 참고하시면 될것같습니다


이것떄문에 삽질 많이했네요 ㅠ



감사합니다.


LIST
블로그 이미지

SeoHW

,