android7.0 정적 IP, 게이트웨이, 서브넷 마스크, DNS 가져오기

2215 단어
    /**
     *  IP 
     * @param context
     * @return
     */
    public Map getIps(Context context){
        Map ipMaps = new HashMap();
        try {
            String ETHERNET_SERVICE = (String) Context.class.getField("ETHERNET_SERVICE").get(null);
            Class> ethernetManagerClass = Class.forName("android.net.EthernetManager");
            Object ethernetManager = context.getSystemService(ETHERNET_SERVICE);
            Field mService = ethernetManagerClass.getDeclaredField("mService");
            //  
            mService.setAccessible(true);
            Object mServiceObject = mService.get(ethernetManager);
            Class> iEthernetManagerClass = Class.forName("android.net.IEthernetManager");
            Method[] methods = iEthernetManagerClass.getDeclaredMethods();
            for (Method ms : methods) {
                String methodName = ms.getName();
                if("getGateway".equals(methodName)){   //  
                    String gate = (String)ms.invoke(mServiceObject);
                    ipMaps.put("gateWay",gate); 
                }else if("getNetmask".equals(methodName)){  //  
                    String mask = (String)ms.invoke(mServiceObject);
                    ipMaps.put("maskAddress",mask);
                }else if("getIpAddress".equals(methodName)){  // IP 
                    String ipAddr = (String)ms.invoke(mServiceObject);
                    ipMaps.put("ipAddress",ipAddr);
                }else if("getDns".equals(methodName)){  // DNS( )
                    String dnss = (String)ms.invoke(mServiceObject);
                    String []arrDns = dnss.split("\\,");
                    String dns = null;
                    if(arrDns != null){
                        dns = arrDns[0];
                        ipMaps.put("dns",dns);
                    }
                }
            }
        } catch (Exception e) {
            Log.d(TAG, "Exception : ",e);
        }
        return ipMaps;
    }

**

시스템 시간 관련 설정은 여기 보세요.


**

좋은 웹페이지 즐겨찾기