我必须检查 apache 服务器的访问。我编写了一个独立的代码来检查 apache 服务器的访问。如果我只是输入它是可访问的 url...但是当我通过代码运行它时它会抛出异常..
作为 java.io.IOException:服务器返回 HTTP 响应代码:403 用于 URL:http: //10.98.12.151 :80/server-status?auto
什么是403响应码??我可以从独立代码中访问它吗...
这是我的代码 connecturl = "http://" + ip + ":" + port + "/server-status?auto"; 目标网址 = 新网址(连接网址);HttpURLConnection httpURLConnection = (HttpURLConnection) targetURL.openConnection();
httpURLConnection.setUseCaches(false);
httpURLConnection.setAllowUserInteraction(false);
httpURLConnection.setDoInput(true);
httpURLConnection.setRequestMethod("GET");
httpURLConnection.connect();