hh:mm aa (12 hour format ) convert in HH:mm (24 ho

2019-08-14 14:23发布

I have String time="02:30 PM" means 12 hour format and i want to convert this time in 24 hour format .

I want this o/p: 14:30. so how can i convert this ?

2条回答
仙女界的扛把子
2楼-- · 2019-08-14 14:26

I don't know anything about berries, but in case the API is missing a proper formatting function, you can always get your hands dirty with the string itself:

static String convert(String time){

    boolean pm = "PM".equals(time.substring(6).toUpperCase());
    int h = Integer.valueOf(time.substring(0,2));

    if (h!=12)
        h+=pm?12:0;
    else
        h=pm?h:0;
    return ((h<10)?"0":"")+h + ":" + time.substring(3,5);
}
查看更多
男人必须洒脱
3楼-- · 2019-08-14 14:52

Try this code.

This will give the current time in 24 Hours format.

    SimpleDateFormat formate = new SimpleDateFormat("HH:mm");
    String newTime = formate.formatLocal(System.currentTimeMillis());
查看更多
登录 后发表回答