博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读取短信
阅读量:4947 次
发布时间:2019-06-11

本文共 1780 字,大约阅读时间需要 5 分钟。

private void readSMS() {        ContentResolver resolver = getContentResolver();        Uri uri = Uri.parse("content://sms/");        String[] projection = new String[]{
"date","body","address","type"}; Cursor cursor = resolver.query(uri, projection, null, null, null); while (cursor.moveToNext()) { long date = cursor.getLong(cursor.getColumnIndex("date")); String body = cursor.getString(cursor.getColumnIndex("body")); String address = cursor.getString(cursor.getColumnIndex("address")); int type = cursor.getInt(cursor.getColumnIndex("type")); SMSInfo info = new SMSInfo(); info.setDate(new Date(date)); info.setBody(body); info.setAddress(address); info.setType(type); System.out.println(info); } }
public class SMSInfo {    Date date;    String body;    int type;    String address;    @Override    public String toString() {        return "SMSInfo{
" + "date=" + new SimpleDateFormat("yyyy-MM-dd").format(date) + ", body='" + body + '\'' + ", type=" + type + ", address='" + address + '\'' + '}'; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } public String getBody() { return body; } public void setBody(String body) { this.body = body; } public int getType() { return type; } public void setType(int type) { this.type = type; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; }}

 

转载于:https://www.cnblogs.com/linson0116/p/4917147.html

你可能感兴趣的文章
EL表达式详解
查看>>
xpath提取多个标签下的text
查看>>
alias导致virtualenv异常的分析和解法
查看>>
html和jsp的区别及优缺点
查看>>
排列组合
查看>>
动态规划
查看>>
Spring的初始化:org.springframework.web.context.ContextLoaderListener
查看>>
Qt编写串口通信程序全程图文讲解(完整)
查看>>
Excel数据生成Sql语句的方法
查看>>
java中random()函数用法介绍
查看>>
C# OLEDB读取EXCEL表格时,某些字段为空解决方法
查看>>
Web前端开发HTML基础(1)
查看>>
bzoj1934: [Shoi2007]Vote 善意的投票
查看>>
The New Methodology新方法论
查看>>
Linux 进程管理剖析: Linux 同步方法剖析 内核原子,自旋锁和互斥锁
查看>>
day06---selenium剩余操作和自动登录
查看>>
Promise 基础学习
查看>>
干货!前端常见兼容性问题
查看>>
linux下mail命令使用
查看>>
晚安西南-----远控房魅影二之FKQ1440-14
查看>>