Android 判断设备 是否使用代理上网

最近要做是否使用代理,百度一直没有找到方法,然后在安卓群中询问大神,大神给了这段代码,测试了下,能使用,发出来共享下。

  1. /*
  2. * 判断设备 是否使用代理上网
  3. * */
  4. private boolean isWifiProxy(Context context) {
  5. final boolean IS_ICS_OR_LATER = Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH;
  6. String proxyAddress;
  7. int proxyPort;
  8. if (IS_ICS_OR_LATER) {
  9. proxyAddress = System.getProperty("http.proxyHost");
  10. String portStr = System.getProperty("http.proxyPort");
  11. proxyPort = Integer.parseInt((portStr != null ? portStr : "-1"));
  12. } else {
  13. proxyAddress = android.net.Proxy.getHost(context);
  14. proxyPort = android.net.Proxy.getPort(context);
  15. }
  16. return (!TextUtils.isEmpty(proxyAddress)) && (proxyPort != -1);
  17. }


转自:https://blog.csdn.net/u012881042/article/details/64440525
上一篇:idea部署web项目,能访问jsp,访问Servlet却出现404错误的解决方法汇总,亲测有效


下一篇:【面试必备】Swift 面试题及其答案