How can I programmatically test an HTTP connection?

前端 未结 4 1780
时光说笑
时光说笑 2020-12-09 04:04

Using Java, how can I test that a URL is contactable, and returns a valid response?

http://stackoverflow.com/about
4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-09 04:57

    The solution as a unit test:

    public void testURL() throws Exception {
        String strUrl = "http://stackoverflow.com/about";
    
        try {
            URL url = new URL(strUrl);
            HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
            urlConn.connect();
    
            assertEquals(HttpURLConnection.HTTP_OK, urlConn.getResponseCode());
        } catch (IOException e) {
            System.err.println("Error creating HTTP connection");
            e.printStackTrace();
            throw e;
        }
    }
    

提交回复
热议问题