public class CallHtml {
public static void callOnePage(String str) {
try {
int httpResult;
URL url = new URL(str);
URLConnection connection = url.openConnection();
connection.connect();
HttpURLConnection httpURLConnection = (HttpURLConnection) connection;
httpResult = httpURLConnection.getResponseCode();
if (httpResult != HttpURLConnection.HTTP_OK) {
System.out.println("没有连接成功");
} else {
System.out.println("连接成功了");
}
} catch (Exception e) {
// TODO: handle exception
}
}
// 这个方法适当重载,就可以省去一些参数传递。
public static void main(String[] args) {
String str = "http://localhost:8080/seveneast/exam/student/student!toExam.do?pid=48";
CallHtml.callOnePage(str);//生成主页。
}
}
java URLConnection 测试连接 访问 网站
原创
©著作权归作者所有:来自51CTO博客作者mb6444ed45406a4的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
网站间歇性无法访问
背景服务器、客户端所在网络环境均为NAT模式。案例环境信息服务器操作系统:Centos 7.9客户端操作系统:Windows 10 专业版客户端浏览器:Google Chrome现象客户端会不定时出现:无法访问此网站,XXX.XXX的响应时间过长,报错代码:ERR_CONNECTION_TIMED_OUT当客户端出现无法访问网站时,同一时刻用手机上网访问同一个站点时能正常访问,同时ping目标网站
TCP RETRANSMISSION ERR_CONNECTION_TIMED tcp_tw_recycle 网站无法访问 间歇性无法访问网站 -
国内多地测试网站访问速度
有时候我们项目在本地域挺快的,但是在国内其他地方就比较慢 这
日常 在线客服 官网 开发环境 -
SSL网站的建立与访问测试
&n
职场 网站 SSL 休闲