Android--擷取簡訊的內容,截取簡訊

來源:互聯網
上載者:User

標籤:

1、首先我們要寫一個廣播接收器,當我們的手機收到簡訊時,系統會自動發送一個廣播,我們只需要接收到這條廣播就可以了

2、在廣播裡面,我們重寫的onReceive()方法,通過裡面的Intent寫到的Bundle就可以拿到簡訊的內容,

3、資訊清單檔裡面我們必須要添加許可權,否則無法接收到。

4、為了防止我們的廣播接收不到,我們自己寫的廣播接收器的許可權必須要大,以防萬一,我設定了1000。

下面上代碼,裡面的注釋也比較詳細..

 1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3     package="com.example.fanlei.cutnotedemo" > 4  5     //接收簡訊 6     <uses-permission android:name="android.permission.RECEIVE_SMS"/> 7     <application 8         android:allowBackup="true" 9         android:icon="@drawable/ic_launcher"10         android:label="@string/app_name"11         android:theme="@style/AppTheme" >12         <!-- action:name = 的名稱是固定的 -->13         <receiver android:name=".NoteReceiver">14             <intent-filter android:priority="1000">15                 <action android:name="android.provider.Telephony.SMS_RECEIVED"/>16             </intent-filter>17         </receiver>18         <activity19             android:name=".MainActivity"20             android:label="@string/app_name" >21             <intent-filter>22                 <action android:name="android.intent.action.MAIN" />23 24                 <category android:name="android.intent.category.LAUNCHER" />25             </intent-filter>26         </activity>27     </application>28 </manifest>

寫一個類,繼承BroadcastReceiver

 1 package com.example.fanlei.cutnotedemo; 2  3 import android.content.BroadcastReceiver; 4 import android.content.Context; 5 import android.content.Intent; 6 import android.os.Bundle; 7 import android.telephony.SmsMessage; 8 import android.widget.Toast; 9 10 import java.text.SimpleDateFormat;11 import java.util.Date;12 13 /**14  * 廣播接收器15  */16 public class NoteReceiver extends BroadcastReceiver {17 18     private static final String SMS_RECEIVED_ACTION = "android.provider.Telephony.SMS_RECEIVED";19     @Override20     public void onReceive(Context context, Intent intent) {21         String action = intent.getAction();22         //判斷廣播訊息23         if (action.equals(SMS_RECEIVED_ACTION)){24             Bundle bundle = intent.getExtras();25             //如果不為空白26             if (bundle != null){27                 //將pdus裡面的內容轉化成Object[]數組28                 Object pdusData[] = (Object[]) bundle.get("pdus");29                 //解析簡訊30                 SmsMessage[] msg = new SmsMessage[pdusData.length];31                 for (int i = 0;i < msg.length;i++){32                     byte pdus[] = (byte[]) pdusData[i];33                     msg[i] = SmsMessage.createFromPdu(pdus);34                 }35                 StringBuffer content = new StringBuffer();//擷取簡訊內容36                 StringBuffer phoneNumber = new StringBuffer();//擷取地址37                 StringBuffer receiveData = new StringBuffer();//擷取時間38                 //分析簡訊具體參數39                 for (SmsMessage temp : msg){40                     content.append(temp.getMessageBody());41                     phoneNumber.append(temp.getOriginatingAddress());42                     receiveData.append(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS")43                             .format(new Date(temp.getTimestampMillis())));44                 }45                 /**46                  * 這裡還可以進行好多操作,比如我們根據手機號進行攔截(取消廣播繼續傳播)等等47                  */48                 Toast.makeText(context,phoneNumber.toString()+content+receiveData, Toast.LENGTH_LONG).show();//簡訊內容49             }50         }51     }52 }

 

Android--擷取簡訊的內容,截取簡訊

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.