`
天天向上1989
  • 浏览: 418275 次
  • 性别: Icon_minigender_2
  • 来自: 南京
社区版块
存档分类
最新评论

【转】Android下实现wap和net自适应

阅读更多

真郁闷,前段时间一直纠结的事情,就这么容易解决了

 

   1. private HttpURLConnection getURLConnection(String url) throws Exception {  
   2.         String proxyHost = android.net.Proxy.getDefaultHost();  
   3.         if (proxyHost != null) {  
   4.             java.net.Proxy p = new java.net.Proxy(java.net.Proxy.Type.HTTP,  
   5.                     new InetSocketAddress(android.net.Proxy.getDefaultHost(),  
   6.                             android.net.Proxy.getDefaultPort()));  
   7.   
   8.             return (HttpURLConnection) new URL(url).openConnection(p);  
   9.   
  10.         } else {  
  11.             return (HttpURLConnection) new URL(url).openConnection();  
  12.         }  
  13.     }  
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics