如何在Apache中向HttpPost添加受限制的Ip

时间:2014-12-11 07:00:36

标签: java php apache

我正在使用apache进行http请求,我想从网络服务器获取数据。到目前为止,我能够在本地做,但我的问题是,由于安全问题,我无法访问网络服务器。我的问题是如何将阻止的网络服务器的IP地址添加到代码中,以防止它因安全问题而被阻止。 这是我的示例代码。

DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
InputStream   is = httpEntity.getContent();

0 个答案:

没有答案