我是靠谱客的博主 简单小白菜,最近开发中收集的这篇文章主要介绍获取URL内容,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package spring;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
public class TestURL {
public static void main(String[] args) throws Exception {
System.out.println(inputStream2String(getURLInputStream("http://www.baidu.com")));
}
/*
* 获取URL内容
* */
public static InputStream getURLInputStream(String site) throws Exception{
final URL url = new URL(site);
URLConnection con = url.openConnection();
con.setUseCaches(false);
InputStream stream = con.getInputStream();
return stream;
}
public static
String
inputStream2String
(InputStream
in)
throws
IOException
{
StringBuffer
out
=
new
StringBuffer();
byte[]
b
=
new
byte[4096];
for
(int
n;
(n
=
in.read(b))
!=
-1;)
{
out.append(new
String(b,
0,
n));
}
return
out.toString();
}
}

最后

以上就是简单小白菜为你收集整理的获取URL内容的全部内容,希望文章能够帮你解决获取URL内容所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部