HttpPost:将图像发送到Web服务器并接收请求

时间:2013-11-13 09:19:11

标签: android

我是Android的新手所以请与我一起使用不正确的术语。我正在编写一个应用程序来帮助识别图像的位置。 将捕获的图像发送到Web服务器。 但是没有收到服务器的答案???

从Web服务器收听和接收有关捕获图像位置的信息并显示给用户。

hier是发出请求的代码:

try {
                response = httpClient.execute(postRequest);
                entityReceived = response.getEntity();
                try {
                    String result = EntityUtils.toString(entityReceived, "UTF-8");
                    System.out.println("Response: " + result);
                } catch (ClientProtocolException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (ParseException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            } catch (ClientProtocolException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
          } 

2 个答案:

答案 0 :(得分:0)

您可以使用以下代码检查状态代码。

HttpResponse response = httpclient.execute(httpRequest);
int status = response.getStatusLine().getStatusCode();

Check Status Code Here

答案 1 :(得分:0)

我认为你帖子中的问题,你没有发布有效的东西到url想要的url。在浏览器中使用该帖子检查您的帖子,结果会出现什么结果。