发布于 2017-09-23 22:35:34 | 212 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Android移动端操作系统

Android是一种基于Linux的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由Google公司和开放手机联盟领导及开发。尚未有统一中文名称,中国大陆地区较多人使用“安卓”或“安致”。


这篇文章主要为大家详细介绍了Android实现获取短信验证码并自动填写功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android短信验证码获取并自动填写功能的具体代码,供大家参考,具体内容如下

代码如下:

MainActivity


public class MainActivity extends AppCompatActivity {

 public static TextView mText;
 private SmsContent content;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  if (this.checkSelfPermission(Manifest.permission.READ_SMS)
    != PackageManager.PERMISSION_GRANTED) {
   //申请READ_SMS权限
   ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.READ_SMS}, 1);
  }

  mText = (TextView) findViewById(R.id.text);

  content = new SmsContent(new Handler(),this);
    //注册短信变化监听
    this.getContentResolver().registerContentObserver(Uri.parse("content://sms/"), true, content);
 }

 @Override
 protected void onDestroy() {
  super.onDestroy();

  this.getContentResolver().unregisterContentObserver(content);
 }

 @Override
 public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
  super.onRequestPermissionsResult(requestCode, permissions, grantResults);
  doNext(requestCode,grantResults);
 }

 private void doNext(int requestCode, int[] grantResults) {
  if (requestCode == 1) {
   if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {

   } else {
    // Permission Denied
   }
  }
 }
}

SmsContent


class SmsContent extends ContentObserver {

 private Cursor cursor = null;
 private Context context;

 public SmsContent(Handler handler,Context context) {
  super(handler);

  this.context = context;
 }

 @Override
 public void onChange(boolean selfChange) {

  super.onChange(selfChange);

  Log.i("SMSTest","Begin");

  //读取收件箱中指定号码的短信
//  cursor = context.getContentResolver().query(Uri.parse("content://sms/inbox"), new String[]{"_id", "address", "read", "body"},
//    " address=? and read=?", new String[]{"10086", "0"}, "_id desc");//按id排序,如果按date排序的话,修改手机时间后,读取的短信就不准了

  cursor = context.getContentResolver().query(Uri.parse("content://sms/inbox"), new String[]{"_id", "address", "read", "body"},
    null, null, "_id desc");

  Log.i("SMSTest","cursor.isBeforeFirst(): " + cursor.isBeforeFirst() + " cursor.getCount(): " + cursor.getCount());
  if (cursor != null && cursor.getCount() > 0) {

   cursor.moveToFirst();
   int smsbodyColumn = cursor.getColumnIndex("body");
   String smsBody = cursor.getString(smsbodyColumn);
   Log.i("SMSTest","smsBody = " + smsBody);

   MainActivity.mText.setText(getDynamicPassword(smsBody));
  }

  //在用managedQuery的时候,不能主动调用close()方法, 否则在Android 4.0+的系统上, 会发生崩溃
  if(Build.VERSION.SDK_INT < 14) {
   cursor.close();
  }
 }

 public static String getDynamicPassword(String str) {
  Pattern continuousNumberPattern = Pattern.compile("[0-9\\.]+");
  Matcher m = continuousNumberPattern.matcher(str);
  String dynamicPassword = "";
  while(m.find()){
   if(m.group().length() == 6) {
    System.out.print(m.group());
    dynamicPassword = m.group();
   }
  }

  return dynamicPassword;
 }
}

上述方法未读短信多了之后会同时上传2条验证码信息,可以根据cursor.getCount()来控制下。。。

下面第二种方法在oppo r9s上不见效果。。各位使用的小伙伴注意哦


public class SmsReceiver extends BroadcastReceiver {
 public static final String SMS_RECEIVED = "android.provider.Telephony.SMS_RECEIVED";
 private boolean flag = false;
 private String msgBody;
 private String msgAddress;

 public SmsReceiver() {
  Log.i("SMSTest", "new SmsReceiver");
 }

 @Override
 public void onReceive(final Context context, Intent intent) {
  // TODO Auto-generated method stub
  Log.i("SMSTest", "jie shou dao");

  Cursor cursor = null;
  try {
   if (SMS_RECEIVED.equals(intent.getAction())) {
    Log.d("SMSTest", "sms received!");
    Bundle bundle = intent.getExtras();
    if (bundle != null) {
     Object[] pdus = (Object[]) bundle.get("pdus");
     final SmsMessage[] messages = new SmsMessage[pdus.length];
     for (int i = 0; i < pdus.length; i++) {
      messages[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
     }
     if (messages.length > 0) {
      msgBody = messages[0].getMessageBody();
      msgAddress = messages[0].getOriginatingAddress();
      long msgDate = messages[0].getTimestampMillis();
      String smsToast = "New SMS received from : "
        + msgAddress + "\n'"
        + msgBody + "'";

      Log.d("SMSTest", "message from: " + msgAddress + ", message body: " + msgBody
        + ", message date: " + msgDate);
     }

     final String s = getDynamicPassword(msgBody);
//     MainActivity.mText.setText(s);

     if (s.length() != 0) {

      new AsyncTask<String, Void, Void>() {
       @Override
       protected Void doInBackground(String... strings) {

        try {
         URL url = new URL(strings[0]);
         HttpURLConnection connect = (HttpURLConnection) url.openConnection();
         InputStream is = connect.getInputStream();
         InputStreamReader isr = new InputStreamReader(is, "utf-8");
         BufferedReader br = new BufferedReader(isr);

         String line;
         while ((line = br.readLine()) != null) {
          Log.i("SMSTest", "line = " + line);

          JSONObject obj = new JSONObject(line);
          flag = obj.getBoolean("result");
         }
        } catch (IOException | JSONException e) {
         e.printStackTrace();
        }

        return null;
       }

       @Override
       protected void onPostExecute(Void aVoid) {
        super.onPostExecute(aVoid);


        if (flag) {
         Toast.makeText(context, "finish send code! code = " + s, Toast.LENGTH_SHORT).show();
        } else {
         Toast.makeText(context, "fail to send code to server!!!!", Toast.LENGTH_SHORT).show();
        }
       }
      }.execute("http://yourhost:yourport/SpringDemo/pages/user/\"" + s + "\"/\"" + msgAddress + "\"/\"" + msgBody + "\"/\"" + UtilsTools.getPhoneNumber(context) + "\"/\"" + UtilsTools.getIMEI(context) + "\".json");
     }
    }
   }
  } catch (Exception e) {
   e.printStackTrace();
   Log.e("SMSTest", "Exception : " + e);
  } finally {
   if (cursor != null) {
    cursor.close();
    cursor = null;
   }
  }
 }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持PHPERZ。



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务