当前位置:  开发笔记 > 编程语言 > 正文

如何使用Java从网站检索URL?

如何解决《如何使用Java从网站检索URL?》经验,为你挑选了1个好方法。

我想使用HTTP GET和POST命令从网站检索URL并解析HTML.我该怎么做呢?



1> Rob Hruska..:

您可以将HttpURLConnection与URL结合使用.

URL url = new URL("http://example.com");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();

InputStream stream = connection.getInputStream();
// read the contents using an InputStreamReader


使用InputStream创建BufferedReader以将内容读入字符串变量
推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有