我有一個時間戳列表(長),我必須根據時間或列表添加排序列表。如何對時間戳列表進行排序?
我已經嘗試過,但其現在的工作。
Collections.sort(vehicles, new Comparator<VehicleListModel.Vehicle>() {
@Override
public int compare(VehicleListModel.Vehicle o1, VehicleListModel.Vehicle o2) {
try {
DateFormat format = new SimpleDateFormat("MM-dd-yyyy hh:mm:ss");
return format.parse(o1.getCreated()).compareTo(format.parse(o2.getCreated()));
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
});
customerListAdapter.notifyDataSetChanged();
它不工作,然後我試圖 this但這Date(timeStamp)
已被棄用
請幫助
***我已經嘗試過,但現在正在努力工作***這不足以幫助我們! **如何**不起作用? –
這是什麼字符串:getCreated()? –
getCreated()將返回時間戳添加到服務現在我必須根據時間戳進行排序 –