1

我正在开发一个 android 应用程序,在我的应用程序中我想将图像数据发送到我的服务器。所以我正在使用 put 请求。我不想用 json 对象发送图像数据。我只想将图像数据作为 HTTP put 请求的正文发送。并且还想设置标题内容长度。所以我尝试了以下方式。

@Override
      protected Void doInBackground(Void... unused) {

         HttpClient hc = new DefaultHttpClient();
            String message;
            HttpPut p = new HttpPut("abc.com");

            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            bitmap.compress(CompressFormat.JPEG, 100, bos);
            byte[] data = bos.toByteArray();


    try {

              p.setEntity(new StringEntity(data.toString()));
              p.setHeader("Content-Length", Long.toString(data.length));
                //p.setHeader("Content-Length", "0");

                HttpResponse resp = hc.execute(p);
                if (resp != null) 
                {
                    if (resp.getStatusLine().getStatusCode() == 204)
                    {

                    }
                }

                Log.d("Status line", "" + resp.getStatusLine().getStatusCode());
            } catch (Exception e) {
                e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onProgressUpdate(Void... unsued) {

    }

    @Override
    protected void onPostExecute(Void result) {
        try {
            if (dialog.isShowing())
                dialog.dismiss();
            Log.i("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "before exception "+result);

        } catch (Exception e) {
            Log.i("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "inside catch ");
            Toast.makeText(getApplicationContext(),"Error"+e,
                    Toast.LENGTH_LONG).show();
            Log.e(e.getClass().getName(), e.getMessage(), e);
        }
    }
}

所以我有两个不清楚的问题。1)我想在不使用多部分和不使用 json 对象的情况下将图像数据发送到我的服务器。只需将其设置为请求正文即可。怎么做?2)我想将内容长度设置为标题部分。怎么做?当我尝试设置内容长度时,它给了我系统错误client protocol exception

在这两个问题上需要帮助。谢谢你。

4

1 回答 1

0

作为上述评论者之一,您不想将 byte[] 更改为字符串。您很可能会损坏您尝试发送的图像(我自己试过)。

您应该尝试改用 ByteArrayEntity(而不是 StringEntity):

p.setEntity(new ByteArrayEntity(data));
于 2013-11-22T23:37:00.297 回答