Convert date and time to milliseconds in Android

前端 未结 4 1853
孤城傲影
孤城傲影 2021-01-03 20:31

I have Date and Time from DatePicker and TimePicker. Now i want to change the s

4条回答
  •  我在风中等你
    2021-01-03 20:39

    You can use this code

    String string_date = "12-December-2012";
    
    SimpleDateFormat f = new SimpleDateFormat("dd-MMM-yyyy");
    Date d = f.parse(string_date);
    long milliseconds = d.getTime();
    

提交回复
热议问题