IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android 采用观察者监听短信数据库并过滤获取短信内容上传至服务器 -> 正文阅读

[移动开发]Android 采用观察者监听短信数据库并过滤获取短信内容上传至服务器

一、创建Service前台服务

package com.iwhalecloud.demo.SMS;

import android.annotation.SuppressLint;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.database.ContentObserver;
import android.database.Cursor;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.net.Uri;
import android.os.Binder;
import android.os.Build;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.text.TextUtils;
import android.util.Log;
import androidx.annotation.RequiresApi;
import com.iwhalecloud.demo.MainActivity;
import com.iwhalecloud.demo.R;
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import okhttp3.FormBody;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

public class MyService extends Service {

    private static final String TAG = MyService.class.getSimpleName();
    private int count;
    private SMSContentObserver smsObserver;
    protected static final int MSG_INBOX = 1;
    public String phoneNo = "10659874";
    public String httpUrl = "http://10.0.2.2:8888/api/test/t1";
    
	//收到消息执行setSmsCode方法
    private final Handler smsHandler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
                case MSG_INBOX:
                    setSmsCode();
                    break;
            }
        }
    };

    @Override
    public IBinder onBind(Intent intent) {
        return new MyBinder();
    }
    public class MyBinder extends Binder {
        /**
         * 获取当前Service的实例
         * @return
         */
        public MyService getService(){
            return MyService.this;
        }
    }

    @RequiresApi(api = Build.VERSION_CODES.O)
    @Override
    public void onCreate() {
        super.onCreate();
        startForeground(100,getNotification("服务运行中...","正在监听号码:"+phoneNo+",保持应用后台运行..."));
        //开启服务时启动短信监听
        smsObserver = new SMSContentObserver(MyService.this,smsHandler);
        getContentResolver().registerContentObserver(Uri.parse("content://sms/"), true, smsObserver);
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
    //获取页面控件传的参数
        phoneNo=intent.getStringExtra("phoneNum");
        httpUrl=intent.getStringExtra("httpUrl");
        return START_STICKY;
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
    }
	//创建通知消息
    @RequiresApi(api = Build.VERSION_CODES.O)
    private Notification getNotification(String title, String message){
        count++;
        Intent clickIntent = new Intent(this, MainActivity.class);
        clickIntent.putExtra("flag",count);
        Notification.Builder builder = new Notification.Builder(this);
        NotificationChannel notificationChannel = null;
        String CHANNEL_ONE_ID = "com.iwhalecloud.com";
        String CHANNEL_ONE_NAME = "Channel One";
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
            //Android8.0开始必须给每个通知分配对应的渠道
            notificationChannel = new NotificationChannel(CHANNEL_ONE_ID,
                    CHANNEL_ONE_NAME, NotificationManager.IMPORTANCE_HIGH);
            notificationChannel.enableLights(true);
            notificationChannel.setLightColor(Color.RED);
            notificationChannel.setShowBadge(true);
            notificationChannel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
            NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
            manager.createNotificationChannel(notificationChannel);
        }
        PendingIntent contentIntent = PendingIntent.getActivity(this,count,clickIntent
                ,PendingIntent.FLAG_UPDATE_CURRENT);
        builder = new Notification.Builder(this)
                .setChannelId(CHANNEL_ONE_ID)
                .setContentIntent(contentIntent)//设置内容的点击意图
                .setAutoCancel(true)//设置是否允许自动清除
                .setSmallIcon(R.mipmap.ic_launcher)//设置状态栏里的小图标
                .setTicker("服务开启")//设置状态栏里面的提示文本
                .setWhen(System.currentTimeMillis())//设置推送时间,格式为"小时:分钟"
                .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))//设置通知栏里面的大图标
                .setContentTitle(title)//设置通知栏里面的标题文本
                .setContentText(message);//设置通知栏里面的内容文本
        //根据消息构造器创建一个通知对象
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN) {
            Notification notify = builder.build();
            return notify;
        }
        return null;
    }
    @SuppressLint("Range")
    private void setSmsCode() {
        Cursor cursor = null;
        // 添加异常捕捉
        try {
        //查找短信数据库
            cursor = getContentResolver().query(
                    Uri.parse("content://sms"),
                    new String[] { "_id", "address", "body", "date" },
                    null, null, "_id asc"); //
            Log.i(TAG, "setSmsCode: You");
            Log.i(TAG, String.valueOf(cursor != null));
            if (cursor != null) {
                cursor.moveToLast();

                final long smsdate = Long.parseLong(cursor.getString(cursor.getColumnIndex("date")));
                final long nowdate = System.currentTimeMillis();
                Log.i(TAG, "setSmsCode: smsdate ==="+smsdate);
                Log.i(TAG, "setSmsCode: nowdate ==="+nowdate);
                //设置过期时间
                if (nowdate - smsdate > 60 * 1000) {
                    Log.i(TAG, "短信过期");
                    return;
                }
                final String strAddress = cursor.getString(cursor.getColumnIndex("address"));   
                final String strbody = cursor.getString(cursor.getColumnIndex("body"));          
                final int smsid = cursor.getInt(cursor.getColumnIndex("_id"));
                if (TextUtils.isEmpty(strAddress) || TextUtils.isEmpty(strbody)) {
                    return;
                }
                Log.i(TAG, "setSmsCode: "+phoneNo);
                Log.i(TAG, "setSmsCode: "+httpUrl);
                //过滤需要的号码
                if (strAddress.equals(phoneNo)){
                	//正则提取6位验证码
                    Pattern continuousNumberPattern = Pattern.compile("(?<![0-9])([0-9]{6})(?![0-9])");
                    Matcher m = continuousNumberPattern.matcher(strbody);
                    String dynamicPassword = "";
                    while (m.find()) {
                        dynamicPassword = m.group();
                    }
                    //连接http服务
                    String finalDynamicPassword = dynamicPassword;
                    new Thread(new Runnable() {
                        @Override
                        public void run() {
                            OkHttpClient mOkHttpClient = new OkHttpClient();
                            RequestBody requestBody = new FormBody.Builder().add("code", finalDynamicPassword).build();
                            Request request = new Request.Builder().url(httpUrl).post(requestBody).build();
                            try {
                                Response response = mOkHttpClient.newCall(request).execute();//发送请求
                                String result = response.body().string();
                                Log.d(TAG, "result: " + result);
                            } catch (IOException e) {
                                e.printStackTrace();
                            }
                        }
                    }).start();
                    Log.i(TAG, "onReceiveSms: "+ dynamicPassword);
                }
            }
        }catch (Exception e) {
            e.printStackTrace();
        }
        finally {
            if (cursor != null) {
                cursor.close();
            }
        }
    }
	// observe对象类
    public class SMSContentObserver extends ContentObserver {
        private static final int MSG_INBOX = 1;
        private int flag = 1;
        private Context mContext;
        private Handler mHandler;
        public SMSContentObserver(Context mContext,
                                  Handler mHandler) {
            super(mHandler); 
            this.mContext = mContext;
            this.mHandler = mHandler;
        }
        @Override
        public void onChange(boolean selfChange) {
            super.onChange(selfChange);

            //onChange会调用三次 第一次获取不到新短信 过滤掉第一次和第三次
            //具体情况具体分析
            if (flag%3 == 2){
                mHandler.obtainMessage(MSG_INBOX, "监听到短信").sendToTarget();
            }
            flag++;
        }
    }
}

二、主界面(参考)

package com.iwhalecloud.demo;

import android.Manifest;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.os.Build;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import com.iwhalecloud.demo.SMS.MyService;

public class MainActivity extends AppCompatActivity {


    private static final String TAG = "CC";
    final private int REQUEST_CODE_ASK_PERMISSIONS = 1;
    private boolean serviceFlag = false;

    @Override
    protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        SharedPreferences read = getSharedPreferences("info", MODE_PRIVATE);
        String phoneNum = "10659874";
        String httpUrl= "";
        if (read.getString("phoneNum",null)!=null){
            phoneNum = read.getString("phoneNum",null);
        }
        if (read.getString("httpUrl",null)!=null){
            httpUrl = read.getString("httpUrl",null);
        }
        TextView v1 = findViewById(R.id.editText1);
        TextView v2 = findViewById(R.id.editText2);
        v1.setText(phoneNum);
        v2.setText(httpUrl);
    }

    public void openService(View v){
        TextView pn = findViewById(R.id.editText1);
        TextView httpUrl = findViewById(R.id.editText2);
        Button button = findViewById(R.id.button);
        if (!serviceFlag){
            Intent service = new Intent(getApplicationContext(), MyService.class);
            SharedPreferences.Editor editor = getSharedPreferences("info",MODE_PRIVATE).edit();
            editor.putString("phoneNum",pn.getText().toString());
            editor.putString("httpUrl",httpUrl.getText().toString());
            editor.apply();
            service.putExtra("phoneNum",pn.getText().toString());
            service.putExtra("httpUrl",httpUrl.getText().toString());
            //动态请求短信权限 不然会报错
            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
                int hasReadSmsPermission = checkSelfPermission(Manifest.permission.READ_SMS);
                if (hasReadSmsPermission != PackageManager.PERMISSION_GRANTED) {
                    requestPermissions(new String[]{Manifest.permission.READ_SMS}, REQUEST_CODE_ASK_PERMISSIONS);
                    return;
                }
            }
            if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                this.startService(service);
            }
            pn.setEnabled(false);
            httpUrl.setEnabled(false);
            serviceFlag = !serviceFlag;
            button.setText("停止服务");
        }else {
            Intent service = new Intent(getApplicationContext(), MyService.class);
            this.stopService(service);
            pn.setEnabled(true);
            httpUrl.setEnabled(true);
            button.setText("启动服务");
            serviceFlag = !serviceFlag;
        }
    }
    @Override
    protected void onResume() {
        super.onResume();
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        Intent service = new Intent(getApplicationContext(), MyService.class);
        this.stopService(service);
    }
}

三、清单文件

    <uses-permission android:name="android.permission.RECEIVE_SMS" />
    <uses-permission android:name="android.permission.READ_SMS" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <application 
    	....
    	....>
    <service
            android:name=".SMS.MyService"
            android:enabled="true"
            android:exported="false" />
    </application>
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-02-26 11:42:07  更:2022-02-26 11:43:02 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 15:59:58-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码