我在firebase firestore中有一个时间戳字段,格式为“ 2019年2月10日,UTC + 5:30 ”
现在,我想在TextView中将此数据显示为 2019年10月10日
我已经用谷歌搜索了,但是没有任何解决方案。谁能帮忙。
答案 0 :(得分:0)
我刚刚使用了以下3行,问题就解决了。
java.util.Date dateFromServer = sometimestampdata.toDate();
String formatter = new SimpleDateFormat("dd-MM-yyyy").format(dateFromServer);
textview.setText(formatter);
Output : 21-05-2018