接收处理JSON传过来的值,有日期和时间,怎么样把日期切掉?
例如:接收到的是:2016-3-6 14:20:
怎么样把日期切掉只留时间“14:20”?
例如:接收到的是:2016-3-6 14:20:
怎么样把日期切掉只留时间“14:20”?
解决方案
2
String s="2016-3-6 14:20"; s=s.substring(s.length()-5,s.length());
10
先把字符串转成时间类型然后设置 SimpleDateFormat sdf = new SimpleDateFormat(“HH:mm”); sdf.format(time);
5
sj.setText(orderList.getReceivealarmtime().substring(orderList.getReceivealarmtime().length()-5,orderList.getReceivealarmtime().length()));
3
2016-3-6 14:20:这个值是你写 的 么 既然能写出这种结果 不管是去掉日期还是时间你应该知道的呀