Java 測試URL地址是否能正常連接
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public static int testWsdlConnection(String address) throws Exception { int status = 404 ; try { URL urlObj = new URL(address); HttpURLConnection oc = (HttpURLConnection) urlObj.openConnection(); oc.setUseCaches( false ); oc.setConnectTimeout( 3000 ); // 設置超時時間 status = oc.getResponseCode(); // 請求狀態 if ( 200 == status) { // 200是請求地址順利連通。。 return status; } } catch (Exception e) { e.printStackTrace(); throw e; } return status; } |
定義了一個int型,如果返回可200則是地址能成功連通,如果返回0或者其他則是失敗。
下面再看一段關于Java檢測URL是否可用或者可打開的代碼
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package test; import java.net.HttpURLConnection; import java.net.URL; import org.apache.log4j.Logger; public class CheskUrl { private static Logger logger = Logger.getLogger(CheskUrl. class ); private static URL urlStr; private static HttpURLConnection connection; private static int state = - 1 ; private static String succ; public synchronized String isConnect(String url) { int counts = 0 ; succ = null ; if (url == null || url.length() <= 0 ) { return succ; } while (counts < 5 ) { try { urlStr = new URL(url); connection = (HttpURLConnection) urlStr.openConnection(); state = connection.getResponseCode(); if (state == 200 ) { succ = connection.getURL().toString(); } break ; } catch (Exception ex) { counts++; logger.info( "loop :" + counts); continue ; } } return succ; } } |
原文鏈接:http://www.cnblogs.com/dongguacha/archive/2016/08/19/5787709.html