Android获取手机能获取的信息(暂时我能想到的)

总结了网上的一些工具类,希望对大家有所帮助,大家可以在评论下方补全更多的获取方法,更多的帮助大家。
原文链接:http://blog.csdn.net/jersey_me/article/details/71403784
package com.mydemo.utils;

import android.Manifest;
import android.app.ActivityManager;
import android.bluetooth.BluetoothAdapter;
import android.content.ContentResolver;
import android.content.Context;
import android.content.pm.PackageManager;
import android.database.Cursor;
import android.database.sqlite.SQLiteException;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
import android.net.wifi.WifiManager;
import android.provider.CallLog;
import android.provider.ContactsContract;
import android.provider.Settings;
import android.support.v4.app.ActivityCompat;
import android.telephony.TelephonyManager;
import android.text.format.Formatter;
import android.util.DisplayMetrics;
import android.util.Log;

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import static android.content.Context.TELEPHONY_SERVICE;

/**

  • Created by JerseyGuo
  • on 2015/5/5.
    */

public class Utils {
/**
* 获取联系人
*
* @param context
* @return
*/
public static List<String> queryContactPhoneNumber(Context context) {
List<String> infos = new ArrayList<>();
String[] cols = {ContactsContract.PhoneLookup.DISPLAY_NAME, ContactsContract.CommonDataKinds.Phone.NUMBER};
Cursor cursor = context.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
cols, null, null, null);
for (int i = 0; i < cursor.getCount(); i++) {
cursor.moveToPosition(i);
// 取得联系人名字
int nameFieldColumnIndex = cursor.getColumnIndex(ContactsContract.PhoneLookup.DISPLAY_NAME);
int numberFieldColumnIndex = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);
String name = cursor.getString(nameFieldColumnIndex);
String number = cursor.getString(numberFieldColumnIndex);
infos.add(name + number);
}
return infos;
}

/**
 * 获取通话记录
 *
 * @param context
 * @return
 */
public static String getCallHistoryList(Context context) {
    ContentResolver cr = context.getContentResolver();
    Cursor cs;
  
    cs = cr.query(CallLog.Calls.CONTENT_URI, //系统方式获取通讯录存储地址
            new String[]{
                    CallLog.Calls.CACHED_NAME,  //姓名
                    CallLog.Calls.NUMBER,    //号码
                    CallLog.Calls.TYPE,  //呼入/呼出(2)/未接
                    CallLog.Calls.DATE,  //拨打时间
                    CallLog.Calls.DURATION   //通话时长
            }, null, null, CallLog.Calls.DEFAULT_SORT_ORDER);
    String callHistoryListStr = "";
    int i = 0;
    if (cs != null && cs.getCount() > 0) {
        for (cs.moveToFirst(); !cs.isAfterLast() & i < 50; cs.moveToNext()) {
            String callName = cs.getString(0);
            String callNumber = cs.getString(1);
            //通话类型
            int callType = Integer.parseInt(cs.getString(2));
            String callTypeStr = "";
            switch (callType) {
                case CallLog.Calls.INCOMING_TYPE:
                    callTypeStr = "呼入";
                    break;
                case CallLog.Calls.OUTGOING_TYPE:
                    callTypeStr = "呼出";
                    break;
                case CallLog.Calls.MISSED_TYPE:
                    callTypeStr = "未接";
                    break;
            }
            //拨打时间
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            Date callDate = new Date(Long.parseLong(cs.getString(3)));
            String callDateStr = sdf.format(callDate);
            //通话时长
            int callDuration = Integer.parseInt(cs.getString(4));
            int min = callDuration / 60;
            int sec = callDuration % 60;
            String callDurationStr = min + "分" + sec + "秒";
            String callOne = "类型:" + callTypeStr + ", 称呼:" + callName + ", 号码:"
                    + callNumber + ", 通话时长:" + callDurationStr + ", 时间:" + callDateStr
                    + "\n---------------------\n";

            callHistoryListStr += callOne;
            i++;
        }
    }

    return callHistoryListStr;
}


/**
 * 获取短信
 *
 * @param context
 * @return
 */
public static String getSmsInPhone(Context context) {
    final String SMS_URI_ALL = "content://sms/";
    final String SMS_URI_INBOX = "content://sms/inbox";
    final String SMS_URI_SEND = "content://sms/sent";
    final String SMS_URI_DRAFT = "content://sms/draft";
    final String SMS_URI_OUTBOX = "content://sms/outbox";
    final String SMS_URI_FAILED = "content://sms/failed";
    final String SMS_URI_QUEUED = "content://sms/queued";

    StringBuilder smsBuilder = new StringBuilder();

    try {
        Uri uri = Uri.parse(SMS_URI_ALL);
        String[] projection = new String[]{"_id", "address", "person", "body", "date", "type"};
        Cursor cur = context.getContentResolver().query(uri, projection, null, null, "date desc");      // 获取手机内部短信

        if (cur.moveToFirst()) {
            int index_Address = cur.getColumnIndex("address");
            int index_Person = cur.getColumnIndex("person");
            int index_Body = cur.getColumnIndex("body");
            int index_Date = cur.getColumnIndex("date");
            int index_Type = cur.getColumnIndex("type");

            do {
                String strAddress = cur.getString(index_Address);
                int intPerson = cur.getInt(index_Person);
                String strbody = cur.getString(index_Body);
                long longDate = cur.getLong(index_Date);
                int intType = cur.getInt(index_Type);

                SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
                Date d = new Date(longDate);
                String strDate = dateFormat.format(d);

                String strType = "";
                if (intType == 1) {
                    strType = "接收";
                } else if (intType == 2) {
                    strType = "发送";
                } else {
                    strType = "null";
                }

                smsBuilder.append("[ ");
                smsBuilder.append(strAddress + ", ");
                smsBuilder.append(intPerson + ", ");
                smsBuilder.append(strbody + ", ");
                smsBuilder.append(strDate + ", ");
                smsBuilder.append(strType);
                smsBuilder.append(" ]\n\n");
            } while (cur.moveToNext());

            if (!cur.isClosed()) {
                cur.close();
                cur = null;
            }
        } else {
            smsBuilder.append("no result!");
        } // end if

        smsBuilder.append("getSmsInPhone has executed!");

    } catch (SQLiteException ex) {
        Log.d("SQLiteException in getSmsInPhone", ex.getMessage());
    }

    return smsBuilder.toString();
}



/**
 * 通过address手机号关联Contacts联系人的显示名字
 *
 * @param address
 * @return
 */
private static String getPeopleNameFromPerson(String address, Context context) {
    if (address == null || address == "") {
        return null;
    }

    String strPerson = "null";
    String[] projection = new String[]{ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME, ContactsContract.CommonDataKinds.Phone.NUMBER};

    Uri uri_Person = Uri.withAppendedPath(ContactsContract.CommonDataKinds.Phone.CONTENT_FILTER_URI, address);  // address 手机号过滤
    Cursor cursor = context.getContentResolver().query(uri_Person, projection, null, null, null);

    if (cursor.moveToFirst()) {
        int index_PeopleName = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME);
        String strPeopleName = cursor.getString(index_PeopleName);
        strPerson = strPeopleName;
    } else {
        strPerson = address;
    }
    cursor.close();
    cursor = null;
    return strPerson;
}

/**
 * android.os.Build.BOARD:获取设备基板名称
 * android.os.Build.BOOTLOADER:获取设备引导程序版本号
 * android.os.Build.BRAND:获取设备品牌
 * android.os.Build.CPU_ABI:获取设备指令集名称(CPU的类型)
 * android.os.Build.CPU_ABI2:获取第二个指令集名称
 * android.os.Build.DEVICE:获取设备驱动名称
 * android.os.Build.DISPLAY:获取设备显示的版本包(在系统设置中显示为版本号)和ID一样
 * android.os.Build.FINGERPRINT:设备的唯一标识。由设备的多个信息拼接合成。
 * android.os.Build.HARDWARE:设备硬件名称,一般和基板名称一样(BOARD)
 * android.os.Build.HOST:设备主机地址
 * android.os.Build.ID:设备版本号。
 * android.os.Build.MODEL :获取手机的型号 设备名称。
 * android.os.Build.MANUFACTURER:获取设备制造商
 * android:os.Build.PRODUCT:整个产品的名称
 * android:os.Build.RADIO:无线电固件版本号,通常是不可用的 显示unknown
 * android.os.Build.TAGS:设备标签。如release-keys 或测试的 test-keys
 * android.os.Build.TIME:时间
 * android.os.Build.TYPE:设备版本类型主要为”user” 或”eng”.
 * android.os.Build.USER:设备用户名 基本上都为android-build
 * android.os.Build.VERSION.RELEASE:获取系统版本字符串。如4.1.2 或2.2 或2.3等
 * android.os.Build.VERSION.CODENAME:设备当前的系统开发代号,一般使用REL代替
 * android.os.Build.VERSION.INCREMENTAL:系统源代码控制值,一个数字或者git hash值
 * android.os.Build.VERSION.SDK:系统的API级别 一般使用下面大的SDK_INT 来查看
 * android.os.Build.VERSION.SDK_INT:系统的API级别 数字表示
 *
 * @param context
 * @return
 */

public static String getInfo(Context context) {
    TelephonyManager mTm = (TelephonyManager) context.getSystemService(TELEPHONY_SERVICE);
    String imei = mTm.getDeviceId();
    String imsi = mTm.getSubscriberId();
    String mtype = android.os.Build.MODEL; // 手机型号
    String numer = mTm.getLine1Number(); // 手机号码,有的可得,有的不可得
    BluetoothAdapter m_BluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    String m_szBTMAC = m_BluetoothAdapter.getAddress();
    WifiManager wm = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
    String macAddress = wm.getConnectionInfo().getMacAddress();
    String sn = mTm.getSimSerialNumber();
    StringBuilder sb = new StringBuilder();
    sb.append("IMEI--" + imei + '\n')
            .append("IMSI--" + imsi + '\n')
            .append("手机型号--" + mtype + '\n')
            .append("本机号码--" + numer + '\n')
            .append("屏幕分辨率--" + getScreen(context) + '\n')
            .append("蓝牙MAC地址--" + m_szBTMAC + '\n')
            .append("WIFI MAC地址--" + macAddress + '\n')
            .append("序列号--" + sn + '\n')
            .append("手机厂商--" + android.os.Build.MANUFACTURER.replace(" ", "-") + '\n')
            .append("DEVICEID--" + Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID) + '\n')
            .append("手机版本号--" + android.os.Build.VERSION.RELEASE + '\n')
            .append("cpu最小频率--" + getCpuInfo()[1] + '\n' + "当前频率--" + getCurCpuFreq() + '\n')
            .append("最大频率--" + getMaxCpuFreq() + '\n')
            .append("最大内存--" + getTotalMemory(context) + '\n')
            .append("可用内存--" + getAvailMemory(context) + '\n')
            .append("联网状态--" + (isWifi(context) ? "wifi" : "运营商") + '\n')
    ;


    return sb.toString();
}


public static String getPhoneInfo(Context context) {

    StringBuilder phoneInfo = new StringBuilder();
    phoneInfo.append("产品名称: " + android.os.Build.PRODUCT + System.getProperty("line.separator"));
    phoneInfo.append("CPU_名称: " + android.os.Build.CPU_ABI + System.getProperty("line.separator"));
    phoneInfo.append("设备标签: " + android.os.Build.TAGS + System.getProperty("line.separator"));
    phoneInfo.append("VERSION_CODES.BASE: " + android.os.Build.VERSION_CODES.BASE + System.getProperty("line.separator"));
    phoneInfo.append("SDK版本: " + android.os.Build.VERSION.SDK + System.getProperty("line.separator"));
    phoneInfo.append("DEVICE: " + android.os.Build.DEVICE + System.getProperty("line.separator"));
    phoneInfo.append("手机名称: " + android.os.Build.BRAND + System.getProperty("line.separator"));
    phoneInfo.append("设备基板名称: " + android.os.Build.BOARD + System.getProperty("line.separator"));
    phoneInfo.append("设备的唯一标识: " + android.os.Build.FINGERPRINT + System.getProperty("line.separator"));
    phoneInfo.append("设备ID: " + android.os.Build.ID + System.getProperty("line.separator"));
    phoneInfo.append("USER: " + android.os.Build.USER + System.getProperty("line.separator"));
    TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
    phoneInfo.append("NetworkOperator = " + tm.getNetworkOperator() + System.getProperty("line.separator"));
    phoneInfo.append("运营商 = " + tm.getNetworkOperatorName() + System.getProperty("line.separator"));
    phoneInfo.append("手机类型 = " + tm.getPhoneType() + System.getProperty("line.separator"));
    phoneInfo.append("国家 = " + tm.getSimCountryIso() + System.getProperty("line.separator"));
    phoneInfo.append("SimState = " + tm.getSimState() + System.getProperty("line.separator"));
    phoneInfo.append("VoiceMailNumber = " + tm.getVoiceMailNumber() + System.getProperty("line.separator"));
    phoneInfo.append(getInfo(context));
    return phoneInfo.toString();
}

/**
 * 获取分辨率
 */
public static String getScreen(Context context) {
    DisplayMetrics dm = new DisplayMetrics();
    dm = context.getResources().getDisplayMetrics();
    int screenWidth = dm.widthPixels;
    int screenHeight = dm.heightPixels;
    return screenWidth + "*" + screenHeight;
}


/**
 * 手机CPU信息
 */
private static String[] getCpuInfo() {
    String str1 = "/proc/cpuinfo";
    String str2 = "";
    String[] cpuInfo = {"", ""};  //1-cpu型号  //2-cpu频率
    String[] arrayOfString;
    try {
        FileReader fr = new FileReader(str1);
        BufferedReader localBufferedReader = new BufferedReader(fr, 8192);
        str2 = localBufferedReader.readLine();
        arrayOfString = str2.split("\\s+");
        for (int i = 2; i < arrayOfString.length; i++) {
            cpuInfo[0] = cpuInfo[0] + arrayOfString[i] + " ";
        }
        str2 = localBufferedReader.readLine();
        arrayOfString = str2.split("\\s+");
        cpuInfo[1] += arrayOfString[2];
        localBufferedReader.close();
    } catch (IOException e) {
    }
    return cpuInfo;
}

/**
 * 获取手机内存大小
 *
 * @return
 */
public static String getTotalMemory(Context context) {
    String str1 = "/proc/meminfo";// 系统内存信息文件
    String str2;
    String[] arrayOfString;
    long initial_memory = 0;
    try {
        FileReader localFileReader = new FileReader(str1);
        BufferedReader localBufferedReader = new BufferedReader(localFileReader, 8192);
        str2 = localBufferedReader.readLine();// 读取meminfo第一行,系统总内存大小

        arrayOfString = str2.split("\\s+");
        for (String num : arrayOfString) {
            Log.i(str2, num + "\t");
        }

        initial_memory = Integer.valueOf(arrayOfString[1]).intValue() * 1024;// 获得系统总内存,单位是KB,乘以1024转换为Byte
        localBufferedReader.close();

    } catch (IOException e) {
    }
    return Formatter.formatFileSize(context, initial_memory);// Byte转换为KB或者MB,内存大小规格化
}

/**
 * 获取当前可用内存大小
 *
 * @return
 */
public static String getAvailMemory(Context context) {
    ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
    ActivityManager.MemoryInfo mi = new ActivityManager.MemoryInfo();
    am.getMemoryInfo(mi);
    return Formatter.formatFileSize(context, mi.availMem);
}

/**
 * cpu最大频率
 *
 * @return
 */
public static String getMaxCpuFreq() {
    String result = "";
    ProcessBuilder cmd;
    try {
        String[] args = {"/system/bin/cat",
                "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq"};
        cmd = new ProcessBuilder(args);
        Process process = cmd.start();
        InputStream in = process.getInputStream();
        byte[] re = new byte[24];
        while (in.read(re) != -1) {
            result = result + new String(re);
        }
        in.close();
    } catch (IOException ex) {
        ex.printStackTrace();
        result = "N/A";
    }
    return result.trim() + "Hz";
}


// 实时获取CPU当前频率(单位KHZ)

public static String getCurCpuFreq() {
    String result = "N/A";
    try {
        FileReader fr = new FileReader(
                "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq");
        BufferedReader br = new BufferedReader(fr);
        String text = br.readLine();
        result = text.trim() + "Hz";
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return result;
}

/**
 * 网络状态
 *
 * @param mContext
 * @return
 */
public static boolean isWifi(Context mContext) {
    ConnectivityManager connectivityManager = (ConnectivityManager) mContext
            .getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo();
    if (activeNetInfo != null
            && activeNetInfo.getType() == ConnectivityManager.TYPE_WIFI) {
        return true;
    }
    return false;
}

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容