`

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.     }  
 
分享到:
评论
1 楼 changeyouforever 2011-03-04  
tks,解决了大问题。

相关推荐

Global site tag (gtag.js) - Google Analytics