我從API獲取日期和時間爲2017-01-15T21:30:05Z
。我想將日期更改爲JAN 15,2017
,時間更改爲9:30 pm
格式。更改日期和時間格式Android
這是我沒有格式化的代碼。
News currentNews = newsList.get(position);
String time=currentNews.getTime();
String[] parts=time.split("T");
parts[1]=parts[1].replace("Z","");
dateView.setText(parts[0]);
timeView.setText(parts[1]);
這些問題已經有很多。你可以在這裏看到[鏈接](http://stackoverflow.com/questions/8654990/how-can-i-get-當前日期在Android?rq = 1) – ku4irka