Android 获取IP地址的示例教程

版权申诉
0 下载量 64 浏览量 更新于2024-10-26 收藏 82KB ZIP 举报
资源摘要信息:"在Android设备上获取IP地址的方法概述" Android操作系统作为移动设备上广泛使用的平台之一,为开发者提供了丰富的API来执行包括网络通信在内的各种操作。获取设备的IP地址是网络编程中的一项基本操作,它对于实现网络通信和调试网络问题至关重要。在Android中,获取IP地址可以通过不同的方式实现,本文将详细解释如何在Android应用中获取设备IP地址的几种常用方法。 ### 知识点概述 #### 1. 使用WifiManager获取IP地址 Android提供了`WifiManager`类用于管理WiFi连接,包括获取当前连接的WiFi信息。以下是使用`WifiManager`获取IP地址的步骤: - 获取`WifiManager`服务实例。 - 检查WiFi是否开启。 - 通过`WifiManager`获取当前连接的网络信息,进而获取到IP地址。 示例代码如下: ```java WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); if (wifiManager.isWifiEnabled()) { WifiInfo wifiInfo = wifiManager.getConnectionInfo(); int ipAddress = wifiInfo.getIpAddress(); String ip = String.format("%d.%d.%d.%d", (ipAddress & 0xff), (ipAddress >> 8 & 0xff), (ipAddress >> 16 & 0xff), (ipAddress >> 24 & 0xff)); Log.d("MyApp", "IP Address: " + ip); } ``` #### 2. 使用NetworkInfo获取IP地址 `NetworkInfo`类提供了关于网络连接状态的信息,可以用来判断设备是否连接到网络以及获取网络的相关属性。通过`NetworkInfo`对象,开发者可以获取到设备的网络类型(如WIFI、移动数据等),再结合`Network`对象,可以获取IP地址。 示例代码如下: ```java ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo(); if (networkInfo != null && networkInfo.isConnected()) { Network network = connectivityManager.getActiveNetwork(); NetworkCapabilities networkCapabilities = connectivityManager.getNetworkCapabilities(network); if (networkCapabilities != null) { int networkType = networkInfo.getType(); if (networkType == ConnectivityManager.TYPE_WIFI) { WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); WifiInfo wifiInfo = wifiManager.getConnectionInfo(); int ipAddress = wifiInfo.getIpAddress(); String ip = String.format("%d.%d.%d.%d", (ipAddress & 0xff), (ipAddress >> 8 & 0xff), (ipAddress >> 16 & 0xff), (ipAddress >> 24 & 0xff)); Log.d("MyApp", "IP Address: " + ip); } } } ``` #### 3. 使用反射获取IP地址 如果出于某些特殊需求需要在没有权限的情况下获取IP地址,可以使用反射机制来获取`WifiManager`的内部属性。这种方法不推荐使用,因为它依赖于API的内部实现细节,这些细节在不同版本的Android系统中可能会有改变,导致代码的不稳定性和兼容性问题。 示例代码如下(仅供学习和研究使用,不推荐实际项目中应用): ```java try { WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); Class<?> wifiInfoClass = wifiManager.getClass(); Method method = wifiInfoClass.getDeclaredMethod("getWifiApIpInt"); method.setAccessible(true); int ipAddress = (Integer) method.invoke(wifiManager); String ip = String.format("%d.%d.%d.%d", (ipAddress & 0xff), (ipAddress >> 8 & 0xff), (ipAddress >> 16 & 0xff), (ipAddress >> 24 & 0xff)); Log.d("MyApp", "IP Address: " + ip); } catch (Exception e) { e.printStackTrace(); } ``` ### 注意事项 - 在使用上述方法获取IP地址之前,需要确保应用具有获取网络状态的权限。在AndroidManifest.xml中添加以下权限: ```xml <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> ``` - 如果应用需要在后台获取网络状态,可能还需要声明一个前台服务。 ### 结论 在Android平台上,开发者可以利用多种方式获取设备的IP地址,其中使用`WifiManager`和`NetworkInfo`是最常见和推荐的方法。这些方法能够直接在官方API中找到,既稳定又可靠。此外,反射机制虽然提供了另一种可能,但出于兼容性和维护性的考虑,应当作为最后的选择。 了解和掌握在Android应用中获取IP地址的正确方法对于开发者来说是必要的,因为IP地址的使用场景非常广泛,比如日志记录、错误报告、网络通信等。通过本篇文章的介绍,希望能帮助到需要在Android应用中获取IP地址的开发者们。

@Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object o) throws Exception { String method = request.getMethod(); String requestURI = request.getRequestURI(); if (o instanceof ResourceHttpRequestHandler || o instanceof ParameterizableViewController) { return true; } String accessName = "无"; HandlerMethod handlerMethod = (HandlerMethod) o; ApiOperation methodAnnotation = handlerMethod.getMethodAnnotation(ApiOperation.class); if (Validator.valid(methodAnnotation)) { accessName = methodAnnotation.value(); log.warn("########## requestURI: {} , method: {} , HandlerMethod: {} , IP: {} ##########", requestURI, method, accessName, IPUtil.getIPAddress(request)); } else { log.error("########## requestURI: {} , HandlerMethod: {} , IP: {} ##########", requestURI, method, IPUtil.getIPAddress(request)); } for (String url : passUrl) { if (UrlUtils.isLike(requestURI, url)) { return !method.equals("OPTIONS"); } } boolean hasPerm = false; if (!method.equals("OPTIONS")) { try { String token = request.getHeader("token"); System.out.println("token -------->>>>>> " + token); if (!Validator.valid(token)) { throw new BusinessException(CommonErrorCode.TOKEN_REMIND, "token不能为空"); } token = (String) permRedisManager.get(token); if (!Validator.valid(token)) { throw new BusinessException(CommonErrorCode.TOKEN_REMIND, "请重新登录"); } Map<String, Claim> result = JWTBuilder.parseJWT(token); if (Validator.valid(result.get(AuthUtil.SYS_EMPLOYEE_NAME))) { // hasPerm = true; DepositBox depositBox = setAttribute(request, result, AuthUtil.SYS_EMPLOYEE_NAME, token); //操作记录 String finalAccessName = accessName; } else if ((Validator.valid(result.get(AuthUtil.MEMBER_NAME)))) { if (requestURI.startsWith("/bg")) { throw new BusinessException(CommonErrorCode.NO_SESSION); } hasPerm = true; setAttribute(request, result, AuthUtil.MEMBER_NAME, token); } } catch (BusinessException e) { throw e; } catch (Exception e) { if (e instanceof NullPointerException) { throw new BusinessException(CommonErrorCode.TOKEN_REMIND, "token无效"); } else if (e instanceof JWTDecodeException) { throw new BusinessException(CommonErrorCode.TOKEN_REMIND, "token信息不完整"); } else { throw new BusinessException(e.toString()); } } } if (!method.equals("OPTIONS") && !hasPerm) { throw new BusinessException(CommonErrorCode.NO_SESSION); } return !method.equals("OPTIONS"); }解释代码

2023-06-08 上传