코드 제어 데이터 흐름 스위치

3143 단어 코드
    /** 
     *       
     * GPRS       ConnectivityManager hide   setMobileDataEnabled        GPRS   
     * @param isEnable 
     * @throws Exception 
     */  
    public static void setGprsStatus(Context context,boolean isEnable){  
        ConnectivityManager mConnectivityManager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);  
        Class<?> cmClass = mConnectivityManager.getClass();  
        Class<?>[] argClasses = new Class[1];  
        argClasses[0] = boolean.class;  
  
        //   ConnectivityManager hide   setMobileDataEnabled,       GPRS    
        Method method;
        try {
            method = cmClass.getMethod("setMobileDataEnabled", argClasses);
            method.invoke(mConnectivityManager, isEnable);  
        } catch (NoSuchMethodException e) {
            // TODO       catch  
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            // TODO       catch  
            e.printStackTrace();
        } catch (IllegalArgumentException e) {
            // TODO       catch  
            e.printStackTrace();
        } catch (InvocationTargetException e) {
            // TODO       catch  
            e.printStackTrace();
        }  
    } 

이 코드는 GPRS의 상태를 설정할 수 있어 반사에 사용된다.

좋은 웹페이지 즐겨찾기