本文介绍了如何从Android收件箱短信转换日期格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用了以下代码:
String[] columnDate = new String[] {"date"};
Cursor cursor1 = getContentResolver().query(Uri.parse("content://sms/inbox"),
columnDate ,null, null, "date desc limit 1");
cursor1.moveToPosition(0);
String msgData1Date = cursor1.getString(0);
..并且可以使用,但格式为"1352933381889".
如何将字符串类型转换为正常的日期/时间格式?
..and it works but gives date on this format "1352933381889"
How to convert to normal date/time format in String type?
推荐答案
尝试一下:
Date date = new Date(cursor1.getLong(0));
String formattedDate = new SimpleDateFormat("MM/dd/yyyy").format(date);
这篇关于如何从Android收件箱短信转换日期格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!