2014-04-22 2 views

답변

0

SimpleDateFormat 클래스를 사용할 수 있습니다.

SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yyyy"); 
    String dateString = "20-04-2014"; 
    Date date = formatter.parse(dateString); 

look here for sample