본문 바로가기
Java/API

SimpleDateFormat 이클립스 느낌표!

by 므시칸곰틔군 2015. 8. 4.

To remove the warning just add Locale.getDefault() as the second argument while instantiating the date format object. Eg.

 SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",
                    java.util.Locale.getDefault());