Log,Toast,SPUtil,Density,SDCard,ScreenUtil,AppVersion,KeyBoard,NetWork,HttpUtil工具类

转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/38965311,本文出自【张鸿洋的博客】

最近统一整理下工具类,以下是栏目,慢慢的就会越来越丰富

http://blog.csdn.net/u013210620/article/category/6251289

1、LogUtil

[java]  view plain  copy
 
  1. package com.example.androidutils;    
  2.   
  3. import android.util.Log;  
  4.   
  5. /**  
  6.  * Log统一管理类  
  7.  *   
  8.  *   
  9.  *   
  10.  */    
  11. public class L    
  12. {    
  13.   
  14.     private L()    
  15.     {    
  16.         throw new UnsupportedOperationException("cannot be instantiated");    
  17.     }    
  18.   
  19.     public static boolean isDebug = true;// 是否需要打印bug,可以在application的onCreate函数里面初始化    
  20.     private static final String TAG = "geek";    
  21.   
  22.     // 下面四个是默认tag的函数    
  23.     public static void i(String msg)    
  24.     {    
  25.         if (isDebug)    
  26.             Log.i(TAG, msg);    
  27.     }    
  28.   
  29.     public static void d(String msg)    
  30.     {    
  31.         if (isDebug)    
  32.             Log.d(TAG, msg);    
  33.     }    
  34.   
  35.     public static void e(String msg)    
  36.     {    
  37.         if (isDebug)    
  38.             Log.e(TAG, msg);    
  39.     }    
  40.   
  41.     public static void v(String msg)    
  42.     {    
  43.         if (isDebug)    
  44.             Log.v(TAG, msg);    
  45.     }    
  46.   
  47.     // 下面是传入自定义tag的函数    
  48.     public static void i(String tag, String msg)    
  49.     {    
  50.         if (isDebug)    
  51.             Log.i(tag, msg);    
  52.     }    
  53.   
  54.     public static void d(String tag, String msg)    
  55.     {    
  56.         if (isDebug)    
  57.             Log.i(tag, msg);    
  58.     }    
  59.   
  60.     public static void e(String tag, String msg)    
  61.     {    
  62.         if (isDebug)    
  63.             Log.i(tag, msg);    
  64.     }    
  65.   
  66.     public static void v(String tag, String msg)    
  67.     {    
  68.         if (isDebug)    
  69.             Log.i(tag, msg);    
  70.     }    
  71. }    

2、Toast管理类

[java]  view plain  copy
 
  1. package com.example.androidutils;    
  2.   
  3. import android.content.Context;  
  4. import android.widget.Toast;  
  5.   
  6. /**  
  7.  * Toast统一管理类  
  8.  *   
  9.  */    
  10. public class T    
  11. {    
  12.   
  13.     private T()    
  14.     {    
  15.         throw new UnsupportedOperationException("cannot be instantiated");    
  16.     }    
  17.   
  18.     public static boolean isShow = true;    
  19.   
  20.     /**  
  21.      * 短时间显示Toast  
  22.      *   
  23.      * @param context  
  24.      * @param message  
  25.      */    
  26.     public static void showShort(Context context, CharSequence message)    
  27.     {    
  28.         if (isShow)    
  29.             Toast.makeText(context, message, Toast.LENGTH_SHORT).show();    
  30.     }    
  31.   
  32.     /**  
  33.      * 短时间显示Toast  
  34.      *   
  35.      * @param context  
  36.      * @param message  
  37.      */    
  38.     public static void showShort(Context context, int message)    
  39.     {    
  40.         if (isShow)    
  41.             Toast.makeText(context, message, Toast.LENGTH_SHORT).show();    
  42.     }    
  43.   
  44.     /**  
  45.      * 长时间显示Toast  
  46.      *   
  47.      * @param context  
  48.      * @param message  
  49.      */    
  50.     public static void showLong(Context context, CharSequence message)    
  51.     {    
  52.         if (isShow)    
  53.             Toast.makeText(context, message, Toast.LENGTH_LONG).show();    
  54.     }    
  55.   
  56.     /**  
  57.      * 长时间显示Toast  
  58.      *   
  59.      * @param context  
  60.      * @param message  
  61.      */    
  62.     public static void showLong(Context context, int message)    
  63.     {    
  64.         if (isShow)    
  65.             Toast.makeText(context, message, Toast.LENGTH_LONG).show();    
  66.     }    
  67.   
  68.     /**  
  69.      * 自定义显示Toast时间  
  70.      *   
  71.      * @param context  
  72.      * @param message  
  73.      * @param duration  
  74.      */    
  75.     public static void show(Context context, CharSequence message, int duration)    
  76.     {    
  77.         if (isShow)    
  78.             Toast.makeText(context, message, duration).show();    
  79.     }    
  80.   
  81.     /**  
  82.      * 自定义显示Toast时间  
  83.      *   
  84.      * @param context  
  85.      * @param message  
  86.      * @param duration  
  87.      */    
  88.     public static void show(Context context, int message, int duration)    
  89.     {    
  90.         if (isShow)    
  91.             Toast.makeText(context, message, duration).show();    
  92.     }    
  93.   
  94. }    


3、SPUtils工具类

[java]  view plain  copy
 
  1. package com.example.androidutils;  
  2.   
  3. import java.lang.reflect.InvocationTargetException;  
  4. import java.lang.reflect.Method;  
  5. import java.util.Map;  
  6.   
  7. import android.content.Context;  
  8. import android.content.SharedPreferences;  
  9.   
  10. public class SPUtils {  
  11.     /** 
  12.      * 保存在手机里面的文件名 
  13.      */  
  14.     public static final String FILE_NAME = "share_data";  
  15.   
  16.     /** 
  17.      * 保存数据的方法,我们需要拿到保存数据的具体类型,然后根据类型调用不同的保存方法 
  18.      *  
  19.      * @param context 
  20.      * @param key 
  21.      * @param object 
  22.      */  
  23.     public static void put(Context context, String key, Object object) {  
  24.   
  25.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  26.                 Context.MODE_PRIVATE);  
  27.         SharedPreferences.Editor editor = sp.edit();  
  28.   
  29.         if (object instanceof String) {  
  30.             editor.putString(key, (String) object);  
  31.         } else if (object instanceof Integer) {  
  32.             editor.putInt(key, (Integer) object);  
  33.         } else if (object instanceof Boolean) {  
  34.             editor.putBoolean(key, (Boolean) object);  
  35.         } else if (object instanceof Float) {  
  36.             editor.putFloat(key, (Float) object);  
  37.         } else if (object instanceof Long) {  
  38.             editor.putLong(key, (Long) object);  
  39.         } else {  
  40.             editor.putString(key, object.toString());  
  41.         }  
  42.   
  43.         SharedPreferencesCompat.apply(editor);  
  44.     }  
  45.   
  46.     /** 
  47.      * 得到保存数据的方法,我们根据默认值得到保存的数据的具体类型,然后调用相对于的方法获取值 
  48.      *  
  49.      * @param context 
  50.      * @param key 
  51.      * @param defaultObject 
  52.      * @return 
  53.      */  
  54.     public static Object get(Context context, String key, Object defaultObject) {  
  55.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  56.                 Context.MODE_PRIVATE);  
  57.   
  58.         if (defaultObject instanceof String) {  
  59.             return sp.getString(key, (String) defaultObject);  
  60.         } else if (defaultObject instanceof Integer) {  
  61.             return sp.getInt(key, (Integer) defaultObject);  
  62.         } else if (defaultObject instanceof Boolean) {  
  63.             return sp.getBoolean(key, (Boolean) defaultObject);  
  64.         } else if (defaultObject instanceof Float) {  
  65.             return sp.getFloat(key, (Float) defaultObject);  
  66.         } else if (defaultObject instanceof Long) {  
  67.             return sp.getLong(key, (Long) defaultObject);  
  68.         }  
  69.   
  70.         return null;  
  71.     }  
  72.   
  73.     /** 
  74.      * 移除某个key值已经对应的值 
  75.      *  
  76.      * @param context 
  77.      * @param key 
  78.      */  
  79.     public static void remove(Context context, String key) {  
  80.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  81.                 Context.MODE_PRIVATE);  
  82.         SharedPreferences.Editor editor = sp.edit();  
  83.         editor.remove(key);  
  84.         SharedPreferencesCompat.apply(editor);  
  85.     }  
  86.   
  87.     /** 
  88.      * 清除所有数据 
  89.      *  
  90.      * @param context 
  91.      */  
  92.     public static void clear(Context context) {  
  93.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  94.                 Context.MODE_PRIVATE);  
  95.         SharedPreferences.Editor editor = sp.edit();  
  96.         editor.clear();  
  97.         SharedPreferencesCompat.apply(editor);  
  98.     }  
  99.   
  100.     /** 
  101.      * 查询某个key是否已经存在 
  102.      *  
  103.      * @param context 
  104.      * @param key 
  105.      * @return 
  106.      */  
  107.     public static boolean contains(Context context, String key) {  
  108.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  109.                 Context.MODE_PRIVATE);  
  110.         return sp.contains(key);  
  111.     }  
  112.   
  113.     /** 
  114.      * 返回所有的键值对 
  115.      *  
  116.      * @param context 
  117.      * @return 
  118.      */  
  119.     public static Map<String, ?> getAll(Context context) {  
  120.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  121.                 Context.MODE_PRIVATE);  
  122.         return sp.getAll();  
  123.     }  
  124.   
  125.     /** 
  126.      * 创建一个解决SharedPreferencesCompat.apply方法的一个兼容类 
  127.      *  
  128.      * @author zhy 
  129.      *  
  130.      */  
  131.     private static class SharedPreferencesCompat {  
  132.         private static final Method sApplyMethod = findApplyMethod();  
  133.   
  134.         /** 
  135.          * 反射查找apply的方法 
  136.          *  
  137.          * @return 
  138.          */  
  139.         @SuppressWarnings({ "unchecked""rawtypes" })  
  140.         private static Method findApplyMethod() {  
  141.             try {  
  142.                 Class clz = SharedPreferences.Editor.class;  
  143.                 return clz.getMethod("apply");  
  144.             } catch (NoSuchMethodException e) {  
  145.             }  
  146.   
  147.             return null;  
  148.         }  
  149.   
  150.         /** 
  151.          * 如果找到则使用apply执行,否则使用commit 
  152.          *  
  153.          * @param editor 
  154.          */  
  155.         public static void apply(SharedPreferences.Editor editor) {  
  156.             try {  
  157.                 if (sApplyMethod != null) {  
  158.                     sApplyMethod.invoke(editor);  
  159.                     return;  
  160.                 }  
  161.             } catch (IllegalArgumentException e) {  
  162.             } catch (IllegalAccessException e) {  
  163.             } catch (InvocationTargetException e) {  
  164.             }  
  165.             editor.commit();  
  166.         }  
  167.     }  
  168.   
  169. }  

4、DensityUtils

[java]  view plain  copy
 
  1. package com.example.androidutils;  
  2.   
  3. import android.content.Context;  
  4. import android.util.TypedValue;  
  5.   
  6. /** 
  7.  * 常用单位转换的辅助类 
  8.  *  
  9.  *  
  10.  *  
  11.  */  
  12. public class DensityUtils {  
  13.     private DensityUtils() {  
  14.         throw new UnsupportedOperationException("cannot be instantiated");  
  15.     }  
  16.   
  17.     /** 
  18.      * dp转px 
  19.      *  
  20.      * @param context 
  21.      * @param val 
  22.      * @return 
  23.      */  
  24.     public static int dp2px(Context context, float dpVal) {  
  25.         return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,  
  26.                 dpVal, context.getResources().getDisplayMetrics());  
  27.     }  
  28.   
  29.     /** 
  30.      * sp转px 
  31.      *  
  32.      * @param context 
  33.      * @param val 
  34.      * @return 
  35.      */  
  36.     public static int sp2px(Context context, float spVal) {  
  37.         return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP,  
  38.                 spVal, context.getResources().getDisplayMetrics());  
  39.     }  
  40.   
  41.     /** 
  42.      * px转dp 
  43.      *  
  44.      * @param context 
  45.      * @param pxVal 
  46.      * @return 
  47.      */  
  48.     public static float px2dp(Context context, float pxVal) {  
  49.         final float scale = context.getResources().getDisplayMetrics().density;  
  50.         return (pxVal / scale);  
  51.     }  
  52.   
  53.     /** 
  54.      * px转sp 
  55.      *  
  56.      * @param fontScale 
  57.      * @param pxVal 
  58.      * @return 
  59.      */  
  60.     public static float px2sp(Context context, float pxVal) {  
  61.         return (pxVal / context.getResources().getDisplayMetrics().scaledDensity);  
  62.     }  
  63.   
  64. }  


5、SDCardUtils

[java]  view plain  copy
 
  1. package com.example.androidutils;  
  2.   
  3. import java.io.File;  
  4.   
  5. import android.os.Environment;  
  6. import android.os.StatFs;  
  7.   
  8. /** 
  9.  * SD卡相关的辅助类 
  10.  *  
  11.  *  
  12.  *  
  13.  */  
  14. public class SDCardUtils {  
  15.     private SDCardUtils() {  
  16.         throw new UnsupportedOperationException("cannot be instantiated");  
  17.     }  
  18.   
  19.     /** 
  20.      * 判断SDCard是否可用 
  21.      *  
  22.      * @return 
  23.      */  
  24.     public static boolean isSDCardEnable() {  
  25.         return Environment.getExternalStorageState().equals(  
  26.                 Environment.MEDIA_MOUNTED);  
  27.   
  28.     }  
  29.   
  30.     /** 
  31.      * 获取SD卡路径 
  32.      *  
  33.      * @return 
  34.      */  
  35.     public static String getSDCardPath() {  
  36.         return Environment.getExternalStorageDirectory().getAbsolutePath()  
  37.                 + File.separator;  
  38.     }  
  39.   
  40.     /** 
  41.      *  
  42.      * 获取手机内部可用空间大小 
  43.      *  
  44.      * @return 
  45.      */  
  46.     public static long getAvailableInternalMemorySize() {  
  47.   
  48.         File path = Environment.getDataDirectory();  
  49.   
  50.         StatFs stat = new StatFs(path.getPath());  
  51.   
  52.         long blockSize = stat.getBlockSize();  
  53.   
  54.         long availableBlocks = stat.getAvailableBlocks();  
  55.   
  56.         return availableBlocks * blockSize;  
  57.   
  58.     }  
  59.   
  60.     /** 
  61.      *  
  62.      * 获取手机内部总空间大小 
  63.      *  
  64.      * @return 
  65.      */  
  66.   
  67.     public static long getTotalInternalMemorySize() {  
  68.   
  69.         File path = Environment.getDataDirectory();// Gets the Android data  
  70.                                                     // directory  
  71.   
  72.         StatFs stat = new StatFs(path.getPath());  
  73.   
  74.         long blockSize = stat.getBlockSize(); // 每个block 占字节数  
  75.   
  76.         long totalBlocks = stat.getBlockCount(); // block总数  
  77.   
  78.         return totalBlocks * blockSize;  
  79.   
  80.     }  
  81.   
  82.     /** 
  83.      *  
  84.      * 获取手机外部可用空间大小 
  85.      *  
  86.      * @return 
  87.      */  
  88.   
  89.     public static long getAvailableExternalMemorySize() {  
  90.   
  91.         if (isSDCardEnable()) {  
  92.   
  93.             File path = Environment.getExternalStorageDirectory();// 获取SDCard根目录  
  94.   
  95.             StatFs stat = new StatFs(path.getPath());  
  96.   
  97.             long blockSize = stat.getBlockSize();  
  98.   
  99.             long availableBlocks = stat.getAvailableBlocks();  
  100.   
  101.             return availableBlocks * blockSize;  
  102.   
  103.         } else {  
  104.   
  105.             return -1;  
  106.   
  107.         }  
  108.   
  109.     }  
  110.   
  111.     /** 
  112.      *  
  113.      * 获取手机外部总空间大小 
  114.      *  
  115.      * @return 
  116.      */  
  117.   
  118.     public static long getTotalExternalMemorySize() {  
  119.   
  120.         if (isSDCardEnable()) {  
  121.   
  122.             File path = Environment.getExternalStorageDirectory(); // 获取SDCard根目录  
  123.   
  124.             StatFs stat = new StatFs(path.getPath());  
  125.   
  126.             long blockSize = stat.getBlockSize();  
  127.   
  128.             long totalBlocks = stat.getBlockCount();  
  129.   
  130.             return totalBlocks * blockSize;  
  131.   
  132.         } else {  
  133.   
  134.             return -1;  
  135.   
  136.         }  
  137.   
  138.     }  
  139.   
  140.     /** 
  141.      * 获取系统存储路径 
  142.      *  
  143.      * @return 
  144.      */  
  145.     public static String getRootDirectoryPath() {  
  146.         return Environment.getRootDirectory().getAbsolutePath();  
  147.     }  
  148.   
  149. }  

6、ScreenUtils

[java]  view plain  copy
 
  1. package com.example.androidutils;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.Context;  
  5. import android.graphics.Bitmap;  
  6. import android.graphics.Rect;  
  7. import android.util.DisplayMetrics;  
  8. import android.view.View;  
  9. import android.view.WindowManager;  
  10.   
  11. /** 
  12.  * 获得屏幕相关的辅助类 
  13.  *  
  14.  *  
  15.  *  
  16.  */  
  17. public class ScreenUtils {  
  18.     private ScreenUtils() {  
  19.         /* cannot be instantiated */  
  20.         throw new UnsupportedOperationException("cannot be instantiated");  
  21.     }  
  22.   
  23.     /** 
  24.      * 获得屏幕高度 
  25.      *  
  26.      * @param context 
  27.      * @return 
  28.      */  
  29.     public static int getScreenWidth(Context context) {  
  30.         WindowManager wm = (WindowManager) context  
  31.                 .getSystemService(Context.WINDOW_SERVICE);  
  32.         DisplayMetrics outMetrics = new DisplayMetrics();  
  33.         wm.getDefaultDisplay().getMetrics(outMetrics);  
  34.         return outMetrics.widthPixels;  
  35.     }  
  36.   
  37.     /** 
  38.      * 获得屏幕宽度 
  39.      *  
  40.      * @param context 
  41.      * @return 
  42.      */  
  43.     public static int getScreenHeight(Context context) {  
  44.         WindowManager wm = (WindowManager) context  
  45.                 .getSystemService(Context.WINDOW_SERVICE);  
  46.         DisplayMetrics outMetrics = new DisplayMetrics();  
  47.         wm.getDefaultDisplay().getMetrics(outMetrics);  
  48.         return outMetrics.heightPixels;  
  49.     }  
  50.   
  51.     /** 
  52.      * 获得状态栏的高度 
  53.      *  
  54.      * @param context 
  55.      * @return 
  56.      */  
  57.     public static int getStatusHeight(Context context) {  
  58.   
  59.         int statusHeight = -1;  
  60.         try {  
  61.             Class<?> clazz = Class.forName("com.android.internal.R$dimen");  
  62.             Object object = clazz.newInstance();  
  63.             int height = Integer.parseInt(clazz.getField("status_bar_height")  
  64.                     .get(object).toString());  
  65.             statusHeight = context.getResources().getDimensionPixelSize(height);  
  66.         } catch (Exception e) {  
  67.             e.printStackTrace();  
  68.         }  
  69.         return statusHeight;  
  70.     }  
  71.   
  72.     /** 
  73.      * 获取当前屏幕截图,包含状态栏 
  74.      *  
  75.      * @param activity 
  76.      * @return 
  77.      */  
  78.     public static Bitmap snapShotWithStatusBar(Activity activity) {  
  79.         View view = activity.getWindow().getDecorView();  
  80.         view.setDrawingCacheEnabled(true);  
  81.         view.buildDrawingCache();  
  82.         Bitmap bmp = view.getDrawingCache();  
  83.         int width = getScreenWidth(activity);  
  84.         int height = getScreenHeight(activity);  
  85.         Bitmap bp = null;  
  86.         bp = Bitmap.createBitmap(bmp, 00, width, height);  
  87.         view.destroyDrawingCache();  
  88.         return bp;  
  89.   
  90.     }  
  91.   
  92.     /** 
  93.      * 获取当前屏幕截图,不包含状态栏 
  94.      *  
  95.      * @param activity 
  96.      * @return 
  97.      */  
  98.     public static Bitmap snapShotWithoutStatusBar(Activity activity) {  
  99.         View view = activity.getWindow().getDecorView();  
  100.         view.setDrawingCacheEnabled(true);  
  101.         view.buildDrawingCache();  
  102.         Bitmap bmp = view.getDrawingCache();  
  103.         Rect frame = new Rect();  
  104.         activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);  
  105.         int statusBarHeight = frame.top;  
  106.   
  107.         int width = getScreenWidth(activity);  
  108.         int height = getScreenHeight(activity);  
  109.         Bitmap bp = null;  
  110.         bp = Bitmap.createBitmap(bmp, 0, statusBarHeight, width, height  
  111.                 - statusBarHeight);  
  112.         view.destroyDrawingCache();  
  113.         return bp;  
  114.   
  115.     }  
  116.   
  117. }  

7、App相关辅助类

[java]  view plain  copy
 
  1. package com.example.androidutils;  
  2.   
  3. import android.content.Context;  
  4. import android.content.pm.PackageInfo;  
  5. import android.content.pm.PackageManager;  
  6. import android.content.pm.PackageManager.NameNotFoundException;  
  7.   
  8. /** 
  9.  * 跟App相关的辅助类 
  10.  *  
  11.  *  
  12.  *  
  13.  */  
  14. public class AppUtils {  
  15.   
  16.     private AppUtils() {  
  17.         /* cannot be instantiated */  
  18.         throw new UnsupportedOperationException("cannot be instantiated");  
  19.   
  20.     }  
  21.   
  22.     /** 
  23.      * 获取应用程序名称 
  24.      */  
  25.     public static String getAppName(Context context) {  
  26.         try {  
  27.             PackageManager packageManager = context.getPackageManager();  
  28.             PackageInfo packageInfo = packageManager.getPackageInfo(  
  29.                     context.getPackageName(), 0);  
  30.             int labelRes = packageInfo.applicationInfo.labelRes;  
  31.             return context.getResources().getString(labelRes);  
  32.         } catch (NameNotFoundException e) {  
  33.             e.printStackTrace();  
  34.         }  
  35.         return null;  
  36.     }  
  37.   
  38.     /** 
  39.      * [获取应用程序版本名称信息] 
  40.      *  
  41.      * @param context 
  42.      * @return 当前应用的版本名称 
  43.      */  
  44.     public static String getVersionName(Context context) {  
  45.         try {  
  46.             PackageManager packageManager = context.getPackageManager();  
  47.             PackageInfo packageInfo = packageManager.getPackageInfo(  
  48.                     context.getPackageName(), 0);  
  49.             return packageInfo.versionName;  
  50.   
  51.         } catch (NameNotFoundException e) {  
  52.             e.printStackTrace();  
  53.         }  
  54.         return null;  
  55.     }  
  56.   
  57. }  

8、KeyBoardUtils

[java]  view plain  copy
 
  1. package com.example.androidutils;  
  2.   
  3. import android.content.Context;  
  4. import android.view.inputmethod.InputMethodManager;  
  5. import android.widget.EditText;  
  6.   
  7. /** 
  8.  * 打开或关闭软键盘 
  9.  *  
  10.  * @author zhy 
  11.  *  
  12.  */  
  13. public class KeyBoardUtils {  
  14.     /** 
  15.      * 打卡软键盘 
  16.      *  
  17.      * @param mEditText 
  18.      *            输入框 
  19.      * @param mContext 
  20.      *            上下文 
  21.      */  
  22.     public static void openKeybord(EditText mEditText, Context mContext) {  
  23.         InputMethodManager imm = (InputMethodManager) mContext  
  24.                 .getSystemService(Context.INPUT_METHOD_SERVICE);  
  25.         imm.showSoftInput(mEditText, InputMethodManager.RESULT_SHOWN);  
  26.         imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,  
  27.                 InputMethodManager.HIDE_IMPLICIT_ONLY);  
  28.     }  
  29.   
  30.     /** 
  31.      * 关闭软键盘 
  32.      *  
  33.      * @param mEditText 
  34.      *            输入框 
  35.      * @param mContext 
  36.      *            上下文 
  37.      */  
  38.     public static void closeKeybord(EditText mEditText, Context mContext) {  
  39.         InputMethodManager imm = (InputMethodManager) mContext  
  40.                 .getSystemService(Context.INPUT_METHOD_SERVICE);  
  41.   
  42.         imm.hideSoftInputFromWindow(mEditText.getWindowToken(), 0);  
  43.     }  
  44. }  

9、NetUtils

[java]  view plain  copy
 
  1. package com.example.androidutils;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.ComponentName;  
  5. import android.content.Context;  
  6. import android.content.Intent;  
  7. import android.net.ConnectivityManager;  
  8. import android.net.NetworkInfo;  
  9.   
  10. /** 
  11.  * 跟网络相关的工具类 
  12.  *  
  13.  *  
  14.  *  
  15.  */  
  16. public class NetUtils {  
  17.     private NetUtils() {  
  18.         throw new UnsupportedOperationException("cannot be instantiated");  
  19.     }  
  20.   
  21.     /** 
  22.      * 判断网络是否连接 
  23.      *  
  24.      * @param context 
  25.      * @return 
  26.      */  
  27.     public static boolean isConnected(Context context) {  
  28.   
  29.         ConnectivityManager connectivity = (ConnectivityManager) context  
  30.                 .getSystemService(Context.CONNECTIVITY_SERVICE);  
  31.   
  32.         if (null != connectivity) {  
  33.   
  34.             NetworkInfo info = connectivity.getActiveNetworkInfo();  
  35.             if (null != info && info.isConnected()) {  
  36.                 if (info.getState() == NetworkInfo.State.CONNECTED) {  
  37.                     return true;  
  38.                 }  
  39.             }  
  40.         }  
  41.         return false;  
  42.     }  
  43.   
  44.     /** 
  45.      * 判断是否是wifi连接 
  46.      */  
  47.     public static boolean isWifi(Context context) {  
  48.         ConnectivityManager cm = (ConnectivityManager) context  
  49.                 .getSystemService(Context.CONNECTIVITY_SERVICE);  
  50.   
  51.         if (cm == null)  
  52.             return false;  
  53.         return cm.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI;  
  54.   
  55.     }  
  56.   
  57.     /** 
  58.      * 打开网络设置界面 
  59.      */  
  60.     public static void openSetting(Activity activity) {  
  61.         Intent intent = new Intent("/");  
  62.         ComponentName cm = new ComponentName("com.android.settings",  
  63.                 "com.android.settings.WirelessSettings");  
  64.         intent.setComponent(cm);  
  65.         intent.setAction("android.intent.action.VIEW");  
  66.         activity.startActivityForResult(intent, 0);  
  67.     }  
  68.   
  69. }  

10、HttpUtils

[java]  view plain  copy
 
  1. package com.example.androidutils;    
  2.   
  3. import java.io.BufferedReader;    
  4. import java.io.ByteArrayOutputStream;    
  5. import java.io.IOException;    
  6. import java.io.InputStream;    
  7. import java.io.InputStreamReader;    
  8. import java.io.PrintWriter;    
  9. import java.net.HttpURLConnection;    
  10. import java.net.URL;    
  11.   
  12. /**  
  13.  * Http请求的工具类  
  14.  *   
  15.  * @author zhy  
  16.  *   
  17.  */    
  18. public class HttpUtils    
  19. {    
  20.   
  21.     private static final int TIMEOUT_IN_MILLIONS = 5000;    
  22.   
  23.     public interface CallBack    
  24.     {    
  25.         void onRequestComplete(String result);    
  26.     }    
  27.   
  28.   
  29.     /**  
  30.      * 异步的Get请求  
  31.      *   
  32.      * @param urlStr  
  33.      * @param callBack  
  34.      */    
  35.     public static void doGetAsyn(final String urlStr, final CallBack callBack)    
  36.     {    
  37.         new Thread()    
  38.         {    
  39.             public void run()    
  40.             {    
  41.                 try    
  42.                 {    
  43.                     String result = doGet(urlStr);    
  44.                     if (callBack != null)    
  45.                     {    
  46.                         callBack.onRequestComplete(result);    
  47.                     }    
  48.                 } catch (Exception e)    
  49.                 {    
  50.                     e.printStackTrace();    
  51.                 }    
  52.   
  53.             };    
  54.         }.start();    
  55.     }    
  56.   
  57.     /**  
  58.      * 异步的Post请求  
  59.      * @param urlStr  
  60.      * @param params  
  61.      * @param callBack  
  62.      * @throws Exception  
  63.      */    
  64.     public static void doPostAsyn(final String urlStr, final String params,    
  65.             final CallBack callBack) throws Exception    
  66.     {    
  67.         new Thread()    
  68.         {    
  69.             public void run()    
  70.             {    
  71.                 try    
  72.                 {    
  73.                     String result = doPost(urlStr, params);    
  74.                     if (callBack != null)    
  75.                     {    
  76.                         callBack.onRequestComplete(result);    
  77.                     }    
  78.                 } catch (Exception e)    
  79.                 {    
  80.                     e.printStackTrace();    
  81.                 }    
  82.   
  83.             };    
  84.         }.start();    
  85.   
  86.     }    
  87.   
  88.     /**  
  89.      * Get请求,获得返回数据  
  90.      *   
  91.      * @param urlStr  
  92.      * @return  
  93.      * @throws Exception  
  94.      */    
  95.     public static String doGet(String urlStr)     
  96.     {    
  97.         URL url = null;    
  98.         HttpURLConnection conn = null;    
  99.         InputStream is = null;    
  100.         ByteArrayOutputStream baos = null;    
  101.         try    
  102.         {    
  103.             url = new URL(urlStr);    
  104.             conn = (HttpURLConnection) url.openConnection();    
  105.             conn.setReadTimeout(TIMEOUT_IN_MILLIONS);    
  106.             conn.setConnectTimeout(TIMEOUT_IN_MILLIONS);    
  107.             conn.setRequestMethod("GET");    
  108.             conn.setRequestProperty("accept""*/*");    
  109.             conn.setRequestProperty("connection""Keep-Alive");    
  110.             if (conn.getResponseCode() == 200)    
  111.             {    
  112.                 is = conn.getInputStream();    
  113.                 baos = new ByteArrayOutputStream();    
  114.                 int len = -1;    
  115.                 byte[] buf = new byte[128];    
  116.   
  117.                 while ((len = is.read(buf)) != -1)    
  118.                 {    
  119.                     baos.write(buf, 0, len);    
  120.                 }    
  121.                 baos.flush();    
  122.                 return baos.toString();    
  123.             } else    
  124.             {    
  125.                 throw new RuntimeException(" responseCode is not 200 ... ");    
  126.             }    
  127.   
  128.         } catch (Exception e)    
  129.         {    
  130.             e.printStackTrace();    
  131.         } finally    
  132.         {    
  133.             try    
  134.             {    
  135.                 if (is != null)    
  136.                     is.close();    
  137.             } catch (IOException e)    
  138.             {    
  139.             }    
  140.             try    
  141.             {    
  142.                 if (baos != null)    
  143.                     baos.close();    
  144.             } catch (IOException e)    
  145.             {    
  146.             }    
  147.             conn.disconnect();    
  148.         }    
  149.             
  150.         return null ;    
  151.   
  152.     }    
  153.   
  154.     /**    
  155.      * 向指定 URL 发送POST方法的请求    
  156.      *     
  157.      * @param url    
  158.      *            发送请求的 URL    
  159.      * @param param    
  160.      *            请求参数,请求参数应该是 name1=value1&name2=value2 的形式。    
  161.      * @return 所代表远程资源的响应结果    
  162.      * @throws Exception    
  163.      */    
  164.     public static String doPost(String url, String param)     
  165.     {    
  166.         PrintWriter out = null;    
  167.         BufferedReader in = null;    
  168.         String result = "";    
  169.         try    
  170.         {    
  171.             URL realUrl = new URL(url);    
  172.             // 打开和URL之间的连接    
  173.             HttpURLConnection conn = (HttpURLConnection) realUrl    
  174.                     .openConnection();    
  175.             // 设置通用的请求属性    
  176.             conn.setRequestProperty("accept""*/*");    
  177.             conn.setRequestProperty("connection""Keep-Alive");    
  178.             conn.setRequestMethod("POST");    
  179.             conn.setRequestProperty("Content-Type",    
  180.                     "application/x-www-form-urlencoded");    
  181.             conn.setRequestProperty("charset""utf-8");    
  182.             conn.setUseCaches(false);    
  183.             // 发送POST请求必须设置如下两行    
  184.             conn.setDoOutput(true);    
  185.             conn.setDoInput(true);    
  186.             conn.setReadTimeout(TIMEOUT_IN_MILLIONS);    
  187.             conn.setConnectTimeout(TIMEOUT_IN_MILLIONS);    
  188.   
  189.             if (param != null && !param.trim().equals(""))    
  190.             {    
  191.                 // 获取URLConnection对象对应的输出流    
  192.                 out = new PrintWriter(conn.getOutputStream());    
  193.                 // 发送请求参数    
  194.                 out.print(param);    
  195.                 // flush输出流的缓冲    
  196.                 out.flush();    
  197.             }    
  198.             // 定义BufferedReader输入流来读取URL的响应    
  199.             in = new BufferedReader(    
  200.                     new InputStreamReader(conn.getInputStream()));    
  201.             String line;    
  202.             while ((line = in.readLine()) != null)    
  203.             {    
  204.                 result += line;    
  205.             }    
  206.         } catch (Exception e)    
  207.         {    
  208.             e.printStackTrace();    
  209.         }    
  210.         // 使用finally块来关闭输出流、输入流    
  211.         finally    
  212.         {    
  213.             try    
  214.             {    
  215.                 if (out != null)    
  216.                 {    
  217.                     out.close();    
  218.                 }    
  219.                 if (in != null)    
  220.                 {    
  221.                     in.close();    
  222.                 }    
  223.             } catch (IOException ex)    
  224.             {    
  225.                 ex.printStackTrace();    
  226.             }    
  227.         }    
  228.         return result;    
  229.     }    
  230. }    

你可能感兴趣的:(Log,Toast,SPUtil,Density,SDCard,ScreenUtil,AppVersion,KeyBoard,NetWork,HttpUtil工具类)