从 org.apache.http.HttpResponse 获取 HTTP 代码

发布于 2024-11-10 16:29:18 字数 181 浏览 1 评论 0原文

我在 Java 应用程序中使用 org.apache.http.HttpResponse 类,并且我需要能够获取 HTTP 状态代码。如果我使用 .toString() ,我可以在其中看到 HTTP 状态代码。是否还有其他函数可以让我获取 int 或 String 形式的 HTTP 状态代码?

非常感谢!

I'm using the org.apache.http.HttpResponse class in my Java application, and I need to be able to get the HTTP status code. If I used .toString() on it, I can see the HTTP status code in there. Is there any other function that I can just get the HTTP status code as either an int or String?

Thanks a bunch!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

难忘№最初的完美 2024-11-17 16:29:18

使用 HttpResponse.getStatusLine(),它返回一个 StatusLine 对象,其中包含状态代码、协议版本和“原因”。

Use HttpResponse.getStatusLine(), which returns a StatusLine object containing the status code, protocol version and "reason".

夜未央樱花落 2024-11-17 16:29:18

我使用了 httpResponse.getStatusLine().getStatusCode() 并发现它可以可靠地返回整数 http 状态代码。

I have used httpResponse.getStatusLine().getStatusCode() and have found this to reliably return the integer http status code.

忆离笙 2024-11-17 16:29:18
httpResponse.getStatusLine().getStatusCode()
httpResponse.getStatusLine().getStatusCode()
汐鸠 2024-11-17 16:29:18

一个例子如下,

        final String enhancementPayload ="sunil kumar";
        HttpPost submitFormReq = new HttpPost("https://bgl-ast/rest/service/form/form-data");
        StringEntity enhancementJson = new StringEntity(enhancementPayload);
        submitFormReq.setEntity(enhancementJson);
        submitFormReq.setHeader("Content-Type", "application/xml");

        HttpResponse response = httpClient.execute( submitFormReq );
        String result = EntityUtils.toString(response.getEntity());
        System.out.println("result "+result);
        assertEquals(200, response.getStatusLine().getStatusCode());

A example will be as below,

        final String enhancementPayload ="sunil kumar";
        HttpPost submitFormReq = new HttpPost("https://bgl-ast/rest/service/form/form-data");
        StringEntity enhancementJson = new StringEntity(enhancementPayload);
        submitFormReq.setEntity(enhancementJson);
        submitFormReq.setHeader("Content-Type", "application/xml");

        HttpResponse response = httpClient.execute( submitFormReq );
        String result = EntityUtils.toString(response.getEntity());
        System.out.println("result "+result);
        assertEquals(200, response.getStatusLine().getStatusCode());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文