您好,登錄后才能下訂單哦!
這篇文章主要介紹怎樣基于java或js獲取URL返回狀態碼,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
描述:使用java或者js訪問某個網站,返回狀態碼
1.java實現
// 用getResponseCode可以獲取URL返回狀態碼 String surl = ""; try { surl="你的url"; URL url = new URL(surl); URLConnection rulConnection = url.openConnection(); HttpURLConnection httpUrlConnection = (HttpURLConnection) rulConnection; httpUrlConnection.setConnectTimeout(300000); httpUrlConnection.setReadTimeout(300000); httpUrlConnection.connect(); String code = new Integer(httpUrlConnection.getResponseCode()).toString(); String message = httpUrlConnection.getResponseMessage(); System.out.println("getResponseCode code ="+ code); System.out.println("getResponseMessage message ="+ message); if(!code.startsWith("2")){ throw new Exception("ResponseCode is not begin with 2,code="+code); } System.out.println(getCurDateTime()+"連接"+surl+"正常"); }catch(Exception ex){ System.out.println(ex.getMessage()); }
2.js實現(成功會返回200,如果頁面找不到會返回404)
function GetHttpStatusCode($url){ $curl = curl_init(); curl_setopt($curl,CURLOPT_URL,$url);//獲取內容url curl_setopt($curl,CURLOPT_HEADER,1);//獲取http頭信息 curl_setopt($curl,CURLOPT_NOBODY,1);//不返回html的body信息 curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);//返回數據流,不直接輸出 curl_setopt($curl,CURLOPT_TIMEOUT,30); //超時時長,單位秒 curl_exec($curl); $rtn= curl_getinfo($curl,CURLINFO_HTTP_CODE); curl_close($curl); return $rtn; } $url = "http://www.baidu.com"; GetHttpStatusCode($url);
以上是“怎樣基于java或js獲取URL返回狀態碼”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。