1

我确实获得了有关如何检索从该链接发送的彩信的文本和图像的信息:如何在 Android 中读取彩信数据?.

但我不确定如何检索发送的彩信的日期。

我知道我必须查看 content://mms 而不是 content://mms/part。

这是检索 mms 文本的方法:

private String getMmsText(String id) {
        Uri partURI = Uri.parse("content://mms/part/" + id);
        InputStream is = null;
        StringBuilder sb = new StringBuilder();
        try {
            is = getContentResolver().openInputStream(partURI);
            if (is != null) {
                InputStreamReader isr = new InputStreamReader(is, "UTF-8");
                BufferedReader reader = new BufferedReader(isr);
                String temp = reader.readLine();
                while (temp != null) {
                    sb.append(temp);
                    temp = reader.readLine();
                }
            }
        } catch (IOException e) {
        } finally {
            if (is != null) {
                try {
                    is.close();
                } catch (IOException e) {
                }
            }
        }
        return sb.toString();
    }

然后,在 onCreate 方法中,我使用此代码获取信息:

Cursor cursor = getContentResolver().query(uri, null, selectionPart,
                null, null);
        if (cursor.moveToFirst()) {
            do {
                String partId = cursor.getString(cursor.getColumnIndex("_id"));
                String type = cursor.getString(cursor.getColumnIndex("ct"));
                if ("text/plain".equals(type)) {
                    String data = cursor.getString(cursor
                            .getColumnIndex("_data"));

                    if (data != null) {
                        // implementation of this method above
                        body = getMmsText(partId);
                    } else {
                        body = cursor.getString(cursor.getColumnIndex("text"));
                    }
                }
            } while (cursor.moveToNext());
        }

        try {


            main.setText(body);
            img.setImageBitmap(bitmap);
        } catch (Exception e) {

            e.printStackTrace();
        }

我只想知道在哪里可以进行更改以获取日期值。

一些信息将非常有帮助。

4

1 回答 1

7

我对彩信不太熟悉,但我想这样的事情至少会让你开始

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

当然,它完全未经测试,但应该为您指明正确的方向。希望这可以帮助!

编辑 在做了一些阅读之后,在检索数据时,曾经(可能仍然存在)一个带有 MMS 消息时间戳的“错误”。如果你最终得到一个愚蠢的值(比如时代),你必须 * 1000 才能使用它。顺便说一句:) 即:

long timestamp = (cursor.getLong(2) * 1000);
于 2014-01-30T15:35:26.607 回答