zoukankan      html  css  js  c++  java
  • 用java程序直接访问URL地址

     /** 
         * 程序中访问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; 
             } 

  • 相关阅读:
    Oracle的连接时ORA-12519错误
    MongoDB(4.4)使用
    MongoDB安装
    SpringBoot_加密配置中的敏感信息
    SpringBoot_配置文件详解
    Nginx入门
    SpringBoot+Redis集成简单测试
    Redis安装
    RabbitMQ消息中间件(第四章)第四部分-SpringBoot整合RabbitMQ
    Mysql try restarting transaction怎么解决,排查事务锁表
  • 原文地址:https://www.cnblogs.com/lzpblog/p/4379998.html
Copyright © 2011-2022 走看看