我正在从galaxy s6上读取短信息和彩信数据。所有的短信都有一个类似这样的date
字段。数字是unix时间戳*1000。我发送(未接收)的mms消息具有如下日期字段:1456252633000
时间戳在unix时间格式中是正确的。但是,我收到的彩信的时间戳完全关闭,如下所示:1440628863
。
上面最后两个时间戳是连续的,但是第二个时间戳显示的好像是几个月前的时间戳。为什么会这样?我在这里做错什么了吗?
编辑
我看了这个(How do the retrieve the date of the mms from content://mms.),发现我的问题是类似的。日期定在1970年。但即使把它转换成毫秒(1454881665
)我仍然得到错误的日期…
编辑2
但是,我试图将这些值转换为long,仍然将日期显示为月份。
作为参考,是2016年2月9日。我要在2015年8月26日进行转换。参考时间戳为:1440185636 * 1000
。
编辑3
下面是一些代码:
ContentResolver contentResolver = context.getContentResolver();
Cursor c = contentResolver.query(Telephony.Mms.CONTENT_URI, null, filter, null, null);
JSONArray array = new JSONArray();
try {
if (c.moveToFirst()) {
do {
try {
String[] cols = c.getColumnNames();
String id = c.getString(c.getColumnIndexOrThrow("_id"));
JSONObject msg = populateFromMmsPart(id);
if (msg != null) {
msg.put("id", id);
msg.put("read", c.getString(c.getColumnIndexOrThrow("read")).contains("1"));
msg.put("time", c.getString(c.getColumnIndexOrThrow("date")));
msg.put("m_id", c.getString(c.getColumnIndexOrThrow("m_id")));
msg.put("received", c.getString(c.getColumnIndexOrThrow("msg_box")).contains("1"));
msg.put("thread_id", c.getString(c.getColumnIndexOrThrow("thread_id")));
array.put(msg);
}
} catch (JSONException j) {
j.printStackTrace();
}
} while (c.moveToNext());
}
} catch (Exception e) {
e.printStackTrace();
} finally {
c.close();
}
private JSONObject populateFromMmsPart(String msgId) {
ContentResolver contentResolver = context.getContentResolver();
Uri messages = Uri.parse("content://mms/part");
Cursor c = contentResolver.query(messages, null, "_id=" + msgId, null, null);
JSONObject msg = null;
if (c.moveToFirst()) {
try {
String mid = c.getString(c.getColumnIndex("mid"));
String type = c.getString(c.getColumnIndex("ct"));
if (!"application/smil".equals(type)) {
// Put all the addresses in one place
msg = new JSONObject();
msg.put("address", getAddressesForMmsMessages(mid));
msg.put("mid", mid);
msg.put("type", type);
if ("text/plain".equals(type)) {
// MMS is just plain text, so get the text
String data = c.getString(c.getColumnIndex("_data"));
String body;
if (data != null) {
body = getMmsText(msgId);
} else {
body = c.getString(c.getColumnIndex("text"));
}
msg.put("msg", body);
}
}
} catch (JSONException j) {
j.printStackTrace();
}
}
c.close();
return msg;
}
以前我在做:
ContentResolver contentResolver = context.getContentResolver();
final String[] projection = new String[]{"*"};
Uri uri = Uri.parse("content://mms-sms/conversations/");
Cursor query = contentResolver.query(uri, projection, "thread_id=109", null, null);
我得到了下面的错误:
java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference
最佳答案
在populateFromMmsPart()
方法中,您在part
表中查询其_id
与mms
表中的消息id匹配的记录。但是,_id
表中的part
是部件的id,而不是消息。消息id在mid
列中。当消息id恰好与旧消息的部分id匹配时,这显然会导致混淆。
按如下所示更改查询。
Cursor c = contentResolver.query(messages, null, "mid=" + msgId, null, null);
另外,在
populateFromMmsPart()
方法中,只处理返回的Cursor
的第一行。那个Cursor
将有(至少)三行。一个是application/smil
,一个是text/plain
,另一个是附件的mime类型。你需要迭代这个Cursor
来得到它们。现在,您只需调用c.moveToFirst()
,并处理这一行。关于android - MMS日期总是错误的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36228389/