如何获取http状态值?

时间:2017-04-18 05:33:02

标签: http http-status-codes http-status

首先我先问了一些问题然后又得到了另一个问题 请先看看这个

I send some values to another url and about that

我提出了一个问题并得到了答案,最后我还有另一个问题 如果我说上面的问题,我发送一些值给其他网址 像这样使用spring和httpclient,

HttpClient client = HttpClientBuilder.create().build();
HttpPost post = new HttpPost("http://test.com");
post.setEntity(new UrlEncodedFormEntity(values arrayList));
(values arrayLists that i made is 
arrayList.add(new BasicNameValuePair("name","mister"));
HttpResponse response = client.execute(post);

如果我发送这样的值,我如何在接收页面获取http状态值,“http://test.com”如果我假设使用spring和java接收页面 如何编码获取http状态值?

0 个答案:

没有答案