彩信发送/ recive日期始终是在1970年是在、日期、彩信发送、recive

2023-09-07 16:43:10 作者:╭安守ゝ那一份思念

从codeI时能够得到彩信低于但日期总是错的。可能是我做错了什么,而转换。

from below code i am able to get the MMS but the date is always wrong. might be i am doing something wrong while conversion.

   Cursor cursor = activity.getContentResolver().query(Uri.parse("content://mms"),null,null,null,date DESC);
count = cursor.getCount();
if (count > 0) {
  cursor.moveToFirst();
    long messageId = cursor.getLong(0);
   long timestamp = cursor.getLong(2);
   Date date = new Date(timestamp);
   String subject = cursor.getString(3);

}

推荐答案

只是一些变化。

长时间戳= cursor.getLong(2)* 1000;

long timestamp = cursor.getLong(2) * 1000;