如何从content:// mms中检索mms的日期。

时间:2014-01-30 15:24:03

标签: android date textview android-sqlite android-mms

我确实获得了有关如何检索此链接发送的mms的文本和图像的信息:How to Read MMS Data in Android?

但我不知道如何检索发送的mms的日期。

我知道我必须查看内容:// mms而不是内容:// 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();
        }

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

有些信息会非常有用。

1 个答案:

答案 0 :(得分:4)

我对MMS没有过分熟悉,但我想这样的事情至少会让你开始

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。只是旁白:) I.e。:

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