Http状态码:简单获取http状态码
Posted zhangjin1120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Http状态码:简单获取http状态码相关的知识,希望对你有一定的参考价值。
public static void main(String[] args)
try
String str = "https://www.baidu.com/";
URL url = new URL(str);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
int responseCode = connection.getResponseCode();
System.out.println(responseCode);
catch (Exception e)
e.printStackTrace();
执行结果:
以上是关于Http状态码:简单获取http状态码的主要内容,如果未能解决你的问题,请参考以下文章
HTTP状态码webview android, WebViewClient