获得手机信息工具类

1. 手机的IMEI
2.手机的制式类型,GSM OR CDMA 手机
3.手机网络国家编码
4.手机网络运营商ID。
5.手机网络运营商名称
6.手机的数据链接类型
7.是否有可用数据链接
8.当前的数据链接类型
9.手机剩余内存
10.手机总内存
11.手机CPU型号
12.手机名称
13.手机型号
14.手机设备制造商名称
上图:
获得手机信息工具类_第1张图片 
源码如下:
  1. package com.ransj.tool;

  2. import java.io.BufferedReader;
  3. import java.io.FileNotFoundException;
  4. import java.io.FileReader;
  5. import java.io.IOException;
  6. import java.io.ObjectInputStream.GetField;

  7. import android.Manifest;
  8. import android.app.Activity;
  9. import android.app.ActivityManager;
  10. import android.app.ActivityManager.MemoryInfo;
  11. import android.content.Context;
  12. import android.content.pm.PackageManager;
  13. import android.net.ConnectivityManager;
  14. import android.net.NetworkInfo;
  15. import android.os.Build;
  16. import android.telephony.TelephonyManager;
  17. import android.util.Log;

  18. /**
  19. * retrieve phone info
  20. *

  21. */
  22. public class PhoneInfo {
  23.         private static final String TAG = PhoneInfo.class.getSimpleName();
  24.         private static final String FILE_MEMORY = "/proc/meminfo";
  25.         private static final String FILE_CPU = "/proc/cpuinfo";
  26.         public String mIMEI;
  27.         public int mPhoneType;
  28.         public int mSysVersion;
  29.         public String mNetWorkCountryIso;
  30.         public String mNetWorkOperator;
  31.         public String mNetWorkOperatorName;
  32.         public int mNetWorkType;
  33.         public boolean mIsOnLine;
  34.         public String mConnectTypeName;
  35.         public long mFreeMem;
  36.         public long mTotalMem;
  37.         public String mCupInfo;
  38.         public String mProductName;
  39.         public String mModelName;
  40.         public String mManufacturerName;

  41.         /**
  42.          * private constructor
  43.          */
  44.         private PhoneInfo() {

  45.         }

  46.         /**
  47.          * get imei
  48.          * 
  49.          * @return
  50.          */
  51.         public static String getIMEI(Context context) {
  52.                 TelephonyManager manager = (TelephonyManager) context
  53.                                 .getSystemService(Activity.TELEPHONY_SERVICE);
  54.                 // check if has the permission
  55.                 if (PackageManager.PERMISSION_GRANTED == context.getPackageManager()
  56.                                 .checkPermission(Manifest.permission.READ_PHONE_STATE,
  57.                                                 context.getPackageName())) {
  58.                         return manager.getDeviceId();
  59.                 } else {
  60.                         return null;
  61.                 }
  62.         }

  63.         /**
  64.          * get phone type,like :GSM��CDMA��SIP��NONE
  65.          * 
  66.          * @param context
  67.          * @return
  68.          */
  69.         public static int getPhoneType(Context context) {
  70.                 TelephonyManager manager = (TelephonyManager) context
  71.                                 .getSystemService(Activity.TELEPHONY_SERVICE);
  72.                 return manager.getPhoneType();
  73.         }

  74.         /**
  75.          * get phone sys version
  76.          * 
  77.          * @return
  78.          */
  79.         public static int getSysVersion() {
  80.                 return Build.VERSION.SDK_INT;
  81.         }

  82.         /**
  83.          * Returns the ISO country code equivalent of the current registered
  84.          * operator's MCC (Mobile Country Code).
  85.          * 
  86.          * @param context
  87.          * @return
  88.          */
  89.         public static String getNetWorkCountryIso(Context context) {
  90.                 TelephonyManager manager = (TelephonyManager) context
  91.                                 .getSystemService(Activity.TELEPHONY_SERVICE);
  92.                 return manager.getNetworkCountryIso();
  93.         }

  94.         /**
  95.          * Returns the numeric name (MCC+MNC) of current registered operator.may not
  96.          * work on CDMA phone
  97.          * 
  98.          * @param context
  99.          * @return
  100.          */
  101.         public static String getNetWorkOperator(Context context) {
  102.                 TelephonyManager manager = (TelephonyManager) context
  103.                                 .getSystemService(Activity.TELEPHONY_SERVICE);
  104.                 return manager.getNetworkOperator();
  105.         }

  106.         /**
  107.          * Returns the alphabetic name of current registered operator.may not work
  108.          * on CDMA phone
  109.          * 
  110.          * @param context
  111.          * @return
  112.          */
  113.         public static String getNetWorkOperatorName(Context context) {
  114.                 TelephonyManager manager = (TelephonyManager) context
  115.                                 .getSystemService(Activity.TELEPHONY_SERVICE);
  116.                 return manager.getNetworkOperatorName();
  117.         }

  118.         /**
  119.          * get type of current network
  120.          * 
  121.          * @param context
  122.          * @return
  123.          */
  124.         public static int getNetworkType(Context context) {
  125.                 TelephonyManager manager = (TelephonyManager) context
  126.                                 .getSystemService(Activity.TELEPHONY_SERVICE);
  127.                 return manager.getNetworkType();
  128.         }

  129.         /**
  130.          * is webservice aviliable
  131.          * 
  132.          * @param context
  133.          * @return
  134.          */
  135.         public static boolean isOnline(Context context) {
  136.                 ConnectivityManager manager = (ConnectivityManager) context
  137.                                 .getSystemService(Activity.CONNECTIVITY_SERVICE);
  138.                 NetworkInfo info = manager.getActiveNetworkInfo();
  139.                 if (info != null && info.isConnected()) {
  140.                         return true;
  141.                 }
  142.                 return false;
  143.         }

  144.         /**
  145.          * get current data connection type name ,like ,Mobile��WIFI��OFFLINE
  146.          * 
  147.          * @param context
  148.          * @return
  149.          */
  150.         public static String getConnectTypeName(Context context) {
  151.                 if (!isOnline(context)) {
  152.                         return "OFFLINE";
  153.                 }
  154.                 ConnectivityManager manager = (ConnectivityManager) context
  155.                                 .getSystemService(Activity.CONNECTIVITY_SERVICE);
  156.                 NetworkInfo info = manager.getActiveNetworkInfo();
  157.                 if (info != null) {
  158.                         return info.getTypeName();
  159.                 } else {
  160.                         return "OFFLINE";
  161.                 }
  162.         }

  163.         /**
  164.          * get free memory of phone, in M
  165.          * 
  166.          * @param context
  167.          * @return
  168.          */
  169.         public static long getFreeMem(Context context) {
  170.                 ActivityManager manager = (ActivityManager) context
  171.                                 .getSystemService(Activity.ACTIVITY_SERVICE);
  172.                 MemoryInfo info = new MemoryInfo();
  173.                 manager.getMemoryInfo(info);
  174.                 long free = info.availMem / 1024 / 1024;
  175.                 return free;
  176.         }

  177.         /**
  178.          * get total memory of phone , in M
  179.          * 
  180.          * @param context
  181.          * @return
  182.          */
  183.         public static long getTotalMem(Context context) {
  184.                 try {
  185.                         FileReader fr = new FileReader(FILE_MEMORY);
  186.                         BufferedReader br = new BufferedReader(fr);
  187.                         String text = br.readLine();
  188.                         String[] array = text.split("\\s+");
  189.                         Log.w(TAG, text);
  190.                         return Long.valueOf(array[1]) / 1024;
  191.                 } catch (FileNotFoundException e) {
  192.                         e.printStackTrace();
  193.                 } catch (IOException e) {
  194.                         e.printStackTrace();
  195.                 }
  196.                 return -1;
  197.         }

  198.         public static String getCpuInfo() {
  199.                 try {
  200.                         FileReader fr = new FileReader(FILE_CPU);
  201.                         BufferedReader br = new BufferedReader(fr);
  202.                         String text = br.readLine();
  203.                         String[] array = text.split(":\\s+", 2);
  204.                         for (int i = 0; i < array.length; i++) {
  205.                                 Log.w(TAG, " .....  " + array[i]);
  206.                         }
  207.                         Log.w(TAG, text);
  208.                         return array[1];
  209.                 } catch (FileNotFoundException e) {
  210.                         e.printStackTrace();
  211.                 } catch (IOException e) {
  212.                         e.printStackTrace();
  213.                 }
  214.                 return null;
  215.         }

  216.         /**
  217.          * get product name of phone
  218.          * 
  219.          * @return
  220.          */
  221.         public static String getProductName() {
  222.                 return Build.PRODUCT;
  223.         }

  224.         /**
  225.          * get model of phone
  226.          * 
  227.          * @return
  228.          */
  229.         public static String getModelName() {
  230.                 return Build.MODEL;
  231.         }

  232.         /**
  233.          * get Manufacturer Name of phone
  234.          * 
  235.          * @return
  236.          */
  237.         public static String getManufacturerName() {
  238.                 return Build.MANUFACTURER;
  239.         }

  240.         public static PhoneInfo getPhoneInfo(Context context) {
  241.                 PhoneInfo result = new PhoneInfo();
  242.                 result.mIMEI = getIMEI(context);
  243.                 result.mPhoneType = getPhoneType(context);
  244.                 result.mSysVersion = getSysVersion();
  245.                 result.mNetWorkCountryIso = getNetWorkCountryIso(context);
  246.                 result.mNetWorkOperator = getNetWorkOperator(context);
  247.                 result.mNetWorkOperatorName = getNetWorkOperatorName(context);
  248.                 result.mNetWorkType = getNetworkType(context);
  249.                 result.mIsOnLine = isOnline(context);
  250.                 result.mConnectTypeName = getConnectTypeName(context);
  251.                 result.mFreeMem = getFreeMem(context);
  252.                 result.mTotalMem = getTotalMem(context);
  253.                 result.mCupInfo = getCpuInfo();
  254.                 result.mProductName = getProductName();
  255.                 result.mModelName = getModelName();
  256.                 result.mManufacturerName = getManufacturerName();
  257.                 return result;
  258.         }

  259.         @Override
  260.         public String toString() {
  261.                 StringBuilder builder = new StringBuilder();
  262.                 builder.append("IMEI : "+mIMEI+"\n");
  263.                 builder.append("mPhoneType : "+mPhoneType+"\n");
  264.                 builder.append("mSysVersion : "+mSysVersion+"\n");
  265.                 builder.append("mNetWorkCountryIso : "+mNetWorkCountryIso+"\n");
  266.                 builder.append("mNetWorkOperator : "+mNetWorkOperator+"\n");
  267.                 builder.append("mNetWorkOperatorName : "+mNetWorkOperatorName+"\n");
  268.                 builder.append("mNetWorkType : "+mNetWorkType+"\n");
  269.                 builder.append("mIsOnLine : "+mIsOnLine+"\n");
  270.                 builder.append("mConnectTypeName : "+mConnectTypeName+"\n");
  271.                 builder.append("mFreeMem : "+mFreeMem+"M\n");
  272.                 builder.append("mTotalMem : "+mTotalMem+"M\n");
  273.                 builder.append("mCupInfo : "+mCupInfo+"\n");
  274.                 builder.append("mProductName : "+mProductName+"\n");
  275.                 builder.append("mModelName : "+mModelName+"\n");
  276.                 builder.append("mManufacturerName : "+mManufacturerName+"\n");
  277.                 return builder.toString();

你可能感兴趣的:(获得手机信息工具类)