博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 获取URL链接 内容
阅读量:6158 次
发布时间:2019-06-21

本文共 578 字,大约阅读时间需要 1 分钟。

public static String getHtmlConentByUrl(String ssourl) {

        try {    
         URL url = new URL(ssourl);
         HttpURLConnection con = (HttpURLConnection) url.openConnection();
            
         con.setInstanceFollowRedirects(false);
         con.setUseCaches(false);
         con.setAllowUserInteraction(false);
         con.connect();             
         StringBuffer sb = new StringBuffer();
         String line = "";
         BufferedReader URLinput = new BufferedReader(new InputStreamReader(con.getInputStream()));
         while ((line = URLinput.readLine()) != null) {
          sb.append(line);
         }
         con.disconnect();
       
         return sb.toString().toLowerCase();
         
        } catch (Exception e) {
          
         return null;
        }
}

转载地址:http://fgafa.baihongyu.com/

你可能感兴趣的文章
Laravel 5.0 - Middleware (中间件)
查看>>
文件特殊权限及facl
查看>>
我的友情链接
查看>>
Android按两次返回键退出应用
查看>>
第一章:认识Redhat Linux
查看>>
文本查看指令
查看>>
我的友情链接
查看>>
android开源项目框架大全:《IT蓝豹》
查看>>
Linux/U-Boot Git Repo
查看>>
python了解
查看>>
在写HTML和CSS时的黄金规范
查看>>
【php】用filter_var实现的简单参数验证
查看>>
Win7开发系列: Win7 UAC帮助类
查看>>
.NET Remoting开发系列:(三) Remoting服务发布方式
查看>>
100道JS构造函数面试题
查看>>
redis安装
查看>>
JQuery的定义
查看>>
linux初始化root密码
查看>>
Java 中正确获取中文字符串长度
查看>>
C# 遇到 which has a higher version than referenced assembly
查看>>