通过URL读取页面内容

Posted dulute

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过URL读取页面内容相关的知识,希望对你有一定的参考价值。

public class Test {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        try {
            URL url = new URL("http://www.baidu.com");
            InputStream is = url.openStream();
            InputStreamReader isr = new InputStreamReader(is,"utf-8");
            BufferedReader br = new BufferedReader(isr);
            String data = br.readLine();
            while (data!=null) {
                System.out.println(data);
                data=br.readLine();
            }
            br.close();
            isr.close();
            is.close();
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

}

 

以上是关于通过URL读取页面内容的主要内容,如果未能解决你的问题,请参考以下文章

publiccms中将推荐页的内容显示在页面片段中

Java 技术篇 - 从指定的web网页页面中读取html内容实例演示,从http协议下的url地址中读取web页面内容方法

通过nodejs 服务器读取HTML文件渲染到页面

在 IE XMLHttpRequest 中读取文件:// URL

302 登录重定向后被 IE 删除的 URL 片段

VB6.0:如何通过xmlhttp对象,获取多个URL的HTML代码?