发布网友 发布时间:2022-04-25 08:44
共5个回答
热心网友 时间:2022-04-18 17:52
---随便在网上一搜一大把
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
public class URLAccess {
public static void main(String[] args) {
try {
test();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public static void test() throws IOException {
URL url = new URL("http://www.baidu.com");
System.out.println("==================以下为网站内容==================");
URLConnection urlcon = url.openConnection();
int i = urlcon.getContentLength();
if (i > 0) {
InputStream is = urlcon.getInputStream();
int a;
while ((a = is.read()) != -1) {
System.out.print((char) a);
}
is.close();
} else {
System.out.println("响应内容为空...");
}
}
}
热心网友 时间:2022-04-18 19:10
HttpClient
热心网友 时间:2022-04-18 20:45
嗯 URLconnection 或者应用 apache 的开源包
热心网友 时间:2022-04-18 22:36
在apache 官网下载jmeter 进行测试,这是专业的测试工具
热心网友 时间:2022-04-19 01:01
围观,。。。。。