码迷,mamicode.com
首页 > 编程语言 > 详细

用java程序直接访问URL地址

时间:2015-03-31 10:36:49      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

 /** 
     * 程序中访问http数据接口 
     */ 
    public static String getURLContent(String urlStr) {            
        /** 网络的url地址 */     
     URL url = null;           
        /** http连接 */ 
     HttpURLConnection httpConn = null;         
         /**//** 输入流 */
     BufferedReader in = null;
     StringBuffer sb = new StringBuffer();
     try{  
      url = new URL(urlStr);  
      in = new BufferedReader( new InputStreamReader(url.openStream(),"UTF-8") );
      String str = null; 
      while((str = in.readLine()) != null) { 
       sb.append( str );  
             }  
         } catch (Exception ex) {
          
         } finally{ 
          try{          
           if(in!=null) {
            in.close();  
                 }  
             }catch(IOException ex) {   
             }  
         }  
         String result =sb.toString();  
         System.out.println(result);  
         return result; 
         } 

用java程序直接访问URL地址

标签:

原文地址:http://www.cnblogs.com/lzpblog/p/4379998.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!