亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

內容觀察者(一個簡單的手機短信竊聽器)

發布時間:2020-07-14 01:47:46 來源:網絡 閱讀:654 作者:秋寒526 欄目:開發技術

一丶內容觀察者
  * 在內容提供者中要通知內容發生了變化
         getContext().getContentResolver().notifyChanges(uri,null) ; //null表示沒有固定的接收者
  * 在其他應用中寫一個觀察者,并注冊一個實例
         getContentResolver().registerContentObserver(uri,true,Observer) ; //uri觀察的主機數據,true表示只要主機匹配即可,Observer表示具體的觀察者
示例: 短信竊聽器

1.先寫一個MyObserver繼承ContentObserver,重寫onchange方法:
public class MyObserver extends ContentObserver {
    private Context context;
    public MyObserver(Context context, Handler handler) {
        super(handler);
        this.context = context;
    }
    @Override
    public void onChange(boolean selfChange, Uri uri) {
        super.onChange(selfChange, uri);

        // 短信表中的字段read : 1代表已經讀了,0代表的是未讀
        // 短信表中的字段type : 2代表監測的機子發出去的信息,1代表的是監測的機子接收到的信息

        // 拿到內容解析器
        ContentResolver recolver = context.getContentResolver();
        // 查詢檢測的機子的系統短信
        Cursor cursor = recolver.query(uri, new String[] { "address", "body", "type", "date" },
                null, null, "date desc");
        cursor.moveToFirst() ;
        //拿到短信信息
        String address = cursor.getString(0) ;
        String body = cursor.getString(1) ;
        int type = cursor.getInt(2) ;
        long date = cursor.getLong(3) ;
        
        if(type == 2){
            String d = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss").format(new Date(date)) ;
            System.out.println("檢測的機子發送了信息: 地址:" + address + " 內容:" + body + "時間 :" + d );
            Toast.makeText(context, "檢測的機子發送了信息: 地址:" + address + " 內容:" + body + "時間 :" + d, 0).show() ;
        }
        
        if(type == 1){
            String d = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss").format(new Date(date)) ;
            System.out.println("檢測的機子接收信息: 地址:" + address + " 內容:" + body + "時間 :" + d );
            Toast.makeText(context, "檢測的機子接收了信息: 地址:" + address + " 內容:" + body + "時間 :" + d, 0).show() ;
        }      
    }
}

2.在其他應用中寫一個觀察者,并注冊一個實例

        Uri uri = Uri.parse("content://sms") ;//監測的主機
        getContentResolver().registerContentObserver(uri, true, new MyObserver(this, new Handler())) ;

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

社会| 西平县| 海兴县| 常熟市| 河西区| 甘泉县| 宜昌市| 城步| 焦作市| 靖远县| 玉树县| 肥西县| 屏边| 伊宁县| 张家口市| 都昌县| 黄梅县| 广安市| 蕉岭县| 那曲县| 惠州市| 淮北市| 奉贤区| 栾城县| 于田县| 福安市| 万全县| 云浮市| 辽阳县| 平安县| 西峡县| 抚宁县| 中牟县| 滦南县| 无锡市| 天峨县| 本溪| 新疆| 利川市| 石屏县| 榆树市|