在android中查找并整理所有短信/彩信

Che*_*tpp 4 android android-contentprovider android-mms

首先,我发现这个答案特别有用.然而,它让我想知道如何找到这样的信息.

我似乎无法弄清楚如何迭代收件箱中的所有邮件.我目前使用的解决方案Uri.parse("content://mms-sms/conversations")是使用"_id"和"ct_t".然而,似乎我只能在手机中找到三个对话,尽管有30个ms(其中20个在保存对话线程中,其他对话分为两个其他对话).对这样的陈述有意义content://mms-sms/conversations.但是,其他提供商似乎只处理短信或彩信.有没有办法以这种方式迭代整个消息列表,我"content://mms-sms/conversations"用其他东西替换?

public boolean refresh() {
    final String[] proj = new String[]{"_id","ct_t"};
    cursor = cr.query(Uri.parse("content://mms-sms/conversations"),proj,null,null,null);
    if(!(cursor.moveToFirst())) {
        empty = true;
        cursor.close();
        return false;
    }
    return true;
}
Run Code Online (Sandbox Code Playgroud)

我用下一个函数迭代消息

    public boolean next() {

        if(empty) {
            cursor.close();
            return false;
        }
        msgCnt = msgCnt + 1;

        Msg msg;
        String msgData = cursor.getString(cursor.getColumnIndex("ct_t"));
        if("application/cnd.wap.multipart.related".equals(msgData)) {
            msg = ParseMMS(cursor.getString(cursor.getColumnIndex("_id")));
        } else {
            msg = ParseSMS(cursor.getString(cursor.getColumnIndex("_id")));
        }


        if(!(cursor.moveToNext())) {
            empty = true;
            cursor.close();
            return false;
        }

        return true;
    }
Run Code Online (Sandbox Code Playgroud)

Che*_*tpp 9

好吧,我问的内容似乎并不可能.
对于那些刚刚开始执行这些任务的人来说,最好了解一下内容提供商的工作方式.添加到查询的每个Uri值都返回对特定表的访问权限.

花一些时间查看可以访问的不同Telephony.Mmssms表,从我的测试看,您可以访问的唯一表是"content://mms-sms/conversations使用"content://mms-sms"导致空游标.

这就是生命,因为根据msg是SMS消息还是MMS消息,提取数据的内容和方法差异很大,因此迭代消息并不真正有意义.有意义的是分别迭代和解析SMS和MMS消息,并将有趣的数据存储到相同的类对象类型中,以便在以后操作他们想要的方式.

对于这样一个主题有用的是Telephony.Sms文档.在哪里可以找到列索引字段的描述.您可以找到Telephony.Mms以及子表Telephony.Mms.Part的相同信息,其中包含指向每个基本列的链接以描述信息.

有了这个说,这里是问题How can I iterate all the SMS/MMS messages in the phone?的解决方案,这里是适合我的解决方案.

public class Main extends AppCompatActivity {
    //Not shown, Overrides,  button to call IterateAll();
    //implementations to follow
    IterateAll();
    public void ScanMMS();
    public void ScanSMS();
    public void ParseMMS(Msg msg);
    public Bitmap getMmsImg(String id);
    public String getMmsAddr(String id);
}
Run Code Online (Sandbox Code Playgroud)

IterateAll()只调用两个不同的函数

IterateAll() {
    ScanMMS();
    ScanSMS();
}
Run Code Online (Sandbox Code Playgroud)

ScanMMS()将遍历content://mms表格,从每个MMS中提取数据.

public void ScanMMS() {
        System.out.println("==============================ScanMMS()==============================");
        //Initialize Box
        Uri uri = Uri.parse("content://mms");
        String[] proj = {"*"};
        ContentResolver cr = getContentResolver();

        Cursor c = cr.query(uri, proj, null, null, null);

        if(c.moveToFirst()) {
            do {
                /*String[] col = c.getColumnNames();
                String str = "";
                for(int i = 0; i < col.length; i++) {
                    str = str + col[i] + ": " + c.getString(i) + ", ";
                }
                System.out.println(str);*/
                //System.out.println("--------------------MMS------------------");
                Msg msg = new Msg(c.getString(c.getColumnIndex("_id")));
                msg.setThread(c.getString(c.getColumnIndex("thread_id")));
                msg.setDate(c.getString(c.getColumnIndex("date")));
                msg.setAddr(getMmsAddr(msg.getID()));


                ParseMMS(msg);
                //System.out.println(msg);
            } while (c.moveToNext());
        }

        c.close();

    }

}
Run Code Online (Sandbox Code Playgroud)

可以看出,此表中有许多重要的MMS数据,例如消息的日期,消息ID和线程ID.您需要使用该消息ID从MMS中提取更多信息.

MMS消息被分成较小的数据部分.每个部分都包含不同的内容,如图像或文本部分.你必须像我下面那样迭代每个部分.

public void ParseMMS(Msg msg) {
        Uri uri = Uri.parse("content://mms/part");
        String mmsId = "mid = " + msg.getID();
        Cursor c = getContentResolver().query(uri, null, mmsId, null, null);
        while(c.moveToNext()) {
/*          String[] col = c.getColumnNames();
            String str = "";
            for(int i = 0; i < col.length; i++) {
                str = str + col[i] + ": " + c.getString(i) + ", ";
            }
            System.out.println(str);*/

            String pid = c.getString(c.getColumnIndex("_id"));
            String type = c.getString(c.getColumnIndex("ct"));
            if ("text/plain".equals(type)) {
                msg.setBody(msg.getBody() + c.getString(c.getColumnIndex("text")));
            } else if (type.contains("image")) {
                msg.setImg(getMmsImg(pid));
            }


        }
        c.close();
        return;
    }
Run Code Online (Sandbox Code Playgroud)

每个部分作为中间字段,对应于之前找到的消息的id.我们只搜索MMS部件库中的mms id,然后迭代找到的不同部分. ct或者content_type如文档中所描述的那样,该部件是什么,即文本,图像等.我扫描类型以查看该部件的用途.如果它是纯文本,我将该文本添加到当前消息体(显然可能有多个文本部分,但我没有看到它,但我相信它),如果它是一个图像,而不是将图像加载到位图中.我想Bitmaps很容易用java发送到我的电脑,但谁知道,也许只想把它作为字节数组加载.

无论如何,这里是如何从MMS部分获取图像数据.

public Bitmap getMmsImg(String id) {
    Uri uri = Uri.parse("content://mms/part/" + id);
    InputStream in = null;
    Bitmap bitmap = null;

    try {
        in = getContentResolver().openInputStream(uri);
        bitmap = BitmapFactory.decodeStream(in);
        if(in != null)
            in.close();
    } catch (IOException e) {
        e.printStackTrace();
    }

    return bitmap;
}
Run Code Online (Sandbox Code Playgroud)

你知道,我不完全确定在内容解析器上打开输入流是如何工作的,它是如何给我的图像而不是像所有其他数据一样,没有任何线索,但它似乎有效.我在寻找解决方案的同时从一些不同的渠道偷走了这个.

MMS地址并不像SMS那样直接,但是这里是你如何获得它们的.我唯一无法做的就是找出发件人是谁.如果有人知道,我会喜欢它.

public String getMmsAddr(String id) {
        String sel = new String("msg_id=" + id);
        String uriString = MessageFormat.format("content://mms/{0}/addr", id);
        Uri uri = Uri.parse(uriString);
        Cursor c = getContentResolver().query(uri, null, sel, null, null);
        String name = "";
        while (c.moveToNext()) {
/*          String[] col = c.getColumnNames();
            String str = "";
            for(int i = 0; i < col.length; i++) {
                str = str + col[i] + ": " + c.getString(i) + ", ";
            }
            System.out.println(str);*/
            String t = c.getString(c.getColumnIndex("address"));
            if(!(t.contains("insert")))
                name = name + t + " ";
        }
        c.close();
        return name;
}
Run Code Online (Sandbox Code Playgroud)

这一切都只适用于MMS.好消息是SMS更简单.

public void ScanSMS() {
        System.out.println("==============================ScanSMS()==============================");
        //Initialize Box
        Uri uri = Uri.parse("content://sms");
        String[] proj = {"*"};
        ContentResolver cr = getContentResolver();

        Cursor c = cr.query(uri,proj,null,null,null);

        if(c.moveToFirst()) {
            do {
                String[] col = c.getColumnNames();
                String str = "";
                for(int i = 0; i < col.length; i++) {
                    str = str + col[i] + ": " + c.getString(i) + ", ";
                }
                //System.out.println(str);

                System.out.println("--------------------SMS------------------");

                Msg msg = new Msg(c.getString(c.getColumnIndex("_id")));
                msg.setDate(c.getString(c.getColumnIndex("date")));
                msg.setAddr(c.getString(c.getColumnIndex("Address")));
                msg.setBody(c.getString(c.getColumnIndex("body")));
                msg.setDirection(c.getString(c.getColumnIndex("type")));
                msg.setContact(c.getString(c.getColumnIndex("person")));
                System.out.println(msg);


            } while (c.moveToNext());
        }
        c.close();
}
Run Code Online (Sandbox Code Playgroud)

这是我简单的消息结构,所以如果需要,任何人都可以快速编译上面的代码.

import android.graphics.Bitmap;

/**
 * Created by rbenedict on 3/16/2016.
 */

//import java.util.Date;

public class Msg {
    private String id;
    private String t_id;
    private String date;
    private String dispDate;
    private String addr;
    private String contact;
    private String direction;
    private String body;
    private Bitmap img;
    private boolean bData;
    //Date vdat;

    public Msg(String ID) {
        id = ID;
        body = "";
    }

    public void setDate(String d) {
        date = d;
        dispDate = msToDate(date);
    }
    public void setThread(String d) { t_id = d; }

    public void setAddr(String a) {
        addr = a;
    }
    public void setContact(String c) {
        if (c==null) {
            contact = "Unknown";
        } else {
            contact = c;
        }
    }
    public void setDirection(String d) {
        if ("1".equals(d))
            direction = "FROM: ";
        else
            direction = "TO: ";

    }
    public void setBody(String b) {
        body = b;
    }
    public void setImg(Bitmap bm) {
        img = bm;
        if (bm != null)
            bData = true;
        else
            bData = false;
    }

    public String getDate() {
        return date;
    }
    public String getDispDate() {
        return dispDate;
    }
    public String getThread() { return t_id; }
    public String getID() { return id; }
    public String getBody() { return body; }
    public Bitmap getImg() { return img; }
    public boolean hasData() { return bData; }

    public String toString() {

        String s = id + ". " + dispDate + " - " + direction + " " + contact + " " + addr + ": "  + body;
        if (bData)
            s = s + "\nData: " + img;
        return s;
    }

    public String msToDate(String mss) {

        long time = Long.parseLong(mss,10);

        long sec = ( time / 1000 ) % 60;
        time = time / 60000;

        long min = time % 60;
        time = time / 60;

        long hour = time % 24 - 5;
        time = time / 24;

        long day = time % 365;
        time = time / 365;

        long yr = time + 1970;

        day = day - ( time / 4 );
        long mo = getMonth(day);
        day = getDay(day);

        mss = String.valueOf(yr) + "/" + String.valueOf(mo) + "/" + String.valueOf(day) + " " + String.valueOf(hour) + ":" + String.valueOf(min) + ":" + String.valueOf(sec);

        return mss;
    }
    public long getMonth(long day) {
        long[] calendar = {31,28,31,30,31,30,31,31,30,31,30,31};
        for(int i = 0; i < 12; i++) {
            if(day < calendar[i]) {
                return i + 1;
            } else {
                day = day - calendar[i];
            }
        }
        return 1;
    }
    public long getDay(long day) {
        long[] calendar = {31,28,31,30,31,30,31,31,30,31,30,31};
        for(int i = 0; i < 12; i++) {
            if(day < calendar[i]) {
                return day;
            } else {
                day = day - calendar[i];
            }
        }
        return day;
    }



}
Run Code Online (Sandbox Code Playgroud)

关于此解决方案的一些最终评论和注释.

person字段似乎总是NULL,后来我计划实现联系人查找.我也无法确定谁发送了彩信.

我对java并不是很熟悉,我还在学习它.我很肯定有一个数据容器(ArrayList)(Vector?)可以保存用户定义的对象.并且如果可以通过对象(日期)中的特定字段进行排序,则可以迭代该列表并且具有所有消息的时间顺序:MMS/SMS以及发送/接收.


Mik*_* M. 5

是否有一种方法可以以这种方式迭代整个消息列表,然后"content://mms-sms/conversations"用其他内容替换?

可以使用content://mms-sms/complete-conversationsURL 在单个查询中获取所有 MMS 和 SMS 消息。由于某些奇怪的原因,类中没有Uri此字段,但至少从 Froyo 起它就可用了。Telephony.MmsSms

使用这个单一查询肯定比单独查询表更有效,并且 SQLite 引擎执行任何需要完成的排序、分组或过滤肯定比操作 Java 集合更快。

请注意,您必须使用特定projection于此查询。您不能传递null*通配符。此外,建议在您的代码中包含MmsSms.TYPE_DISCRIMINATOR_COLUMN( "transport_type") projection- 其值为"mms""sms"- 以便轻松区分消息类型。

、和参数照常工作,并且可以为其中任何一个或全部传递selectionselectionArgsorderBynull