使用 MultipartEntity 构建 POST 请求

问题描述 投票:0回答:2

我想构造一个多部分请求,具有以下参数:名称(字符串)、电子邮件(字符串)和文件上传(文件)。我正在使用下面的 Java 代码(在 Android 中工作)。

httppost.getRequestLine() 打印

POST http://www.myurl.com/upload HTTP/1.1

因此,在客户端站点上一切看起来都很好,但我的服务器(Django/Apache)将其读取为 GET 请求,没有 GET 参数 -

request.method
生成“GET”,
request.GET.items()
生成一个空字典。

我做错了什么?我实际上不知道如何正确设置多部分参数 - 我正在使用猜测 - 所以这可能就是问题所在。

public void SendMultipartFile() {
  Log.e(LOG_TAG, "SendMultipartFile");
  DefaultHttpClient httpclient = new DefaultHttpClient();
  HttpPost httppost = new HttpPost("http://www.myurl.com/upload");
  File file = new File(Environment.getExternalStorageDirectory(),
  "video.3gp");
  Log.e(LOG_TAG, "setting up multipart entity");
  MultipartEntity mpEntity = new MultipartEntity();
  ContentBody cbFile = new FileBody(file);
  mpEntity.addPart("fileupload", cbFile);
  Log.i("SendLargeFile", "file length = " + file.length());
  try {
   mpEntity.addPart("name", new StringBody(name));
   mpEntity.addPart("email", new StringBody(email));;
  } catch (UnsupportedEncodingException e1) {
   // TODO Auto-generated catch block
   Log.e(LOG_TAG, "UnsupportedEncodingException");
   e1.printStackTrace();
  }
  httppost.setEntity(mpEntity);
  Log.e(LOG_TAG, "executing request " + httppost.getRequestLine());
  HttpResponse response;
  try {
   Log.e(LOG_TAG, "about to execute");
   response = httpclient.execute(httppost);
   Log.e(LOG_TAG, "executed");
   HttpEntity resEntity = response.getEntity();
   Log.e(LOG_TAG, response.getStatusLine().toString());
   if (resEntity != null) {
    System.out.println(EntityUtils.toString(resEntity));
   }
   if (resEntity != null) {
    resEntity.consumeContent();
   }
  } catch (ClientProtocolException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
android django file-upload httpclient multipart
2个回答
0
投票

您可能找错地方了。您正在 POSTing,但正在 request.GET 中查找数据:

尝试在“request.POST”和“request.FILES”中查找 QueryDict...

http://docs.djangoproject.com/en/1.6/ref/request-response/#django.http.HttpRequest.FILES


0
投票

我对 MultipartEntity 请求也有同样的问题。我需要将图像上传到服务器。 所以我通过 HttpURLConnection 类做了 MultipartEntity 请求。 我把我的代码放在这里,认为它对你有用。 您需要设置 URL 路径和文件路径。对于这个使用方法put。

public class UploadImage
implements Runnable{

private static String delimiter = "--";
private static String boundary = "SwA" + Long.toString(System.currentTimeMillis()) + "SwA";
private static int bytesRead;
private static int bytesAvailable;
private static int bufferSize;
private static byte[] buffer;
private static int maxBufferSize = 1 * 1024 * 1024;

private String URL;
private String file;


@Override
public void run()
{
    HttpURLConnection conn = null;
    String response = null;
    try {

        URL url = new URL(URL);
        conn = (HttpURLConnection) url.openConnection();
        conn.setDoOutput(true);
        conn.setDoInput(true);
        conn.setUseCaches(false);
        conn.setRequestMethod("POST");
        conn.setRequestProperty("Connection", "Keep-Alive");
        conn.setRequestProperty("Content-type", "multipart/form-data; boundary=" + boundary);
        conn.setRequestProperty("USER-AUTH", UserPreferences.getToken());
        conn.connect();
        //

        DataOutputStream dos = new DataOutputStream(conn.getOutputStream());
        dos.writeBytes((delimiter + boundary + "\r\n"));
        dos.writeBytes("Content-Disposition: form-data; name=\"" + "image" + "\"; filename=\"" + file + "\"\r\n");
        dos.writeBytes("Content-Type: mimetype\r\n");// Content-Type:
                                                     // text/plain
        dos.writeBytes("Content-Transfer-Encoding: binary\r\n\r\n");


        // create a buffer of maximum size
        FileInputStream fileInputStream = new FileInputStream(new File(file));
        bytesAvailable = fileInputStream.available();
        bufferSize = Math.min(bytesAvailable, maxBufferSize);
        buffer = new byte[bufferSize];
        // read file and write it into form...
        bytesRead = fileInputStream.read(buffer, 0, bufferSize);
        while (bytesRead > 0) {
            dos.write(buffer, 0, bufferSize);

            bytesAvailable = fileInputStream.available();
            bufferSize = Math.min(bytesAvailable, maxBufferSize);
            bytesRead = fileInputStream.read(buffer, 0, bufferSize);
        }

        dos.writeBytes("\r\n");
        dos.writeBytes(delimiter + boundary + delimiter + "\r\n");
        fileInputStream.close();
        dos.flush();
        dos.close();
        int responseCode = conn.getResponseCode();

        if (responseCode != 200) {
            throw new Exception(String.format("Received the response code %d from the URL %s", responseCode, url));
        }

        InputStream is = conn.getInputStream();
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        byte[] bytes = new byte[1024];
        int bytesRead;
        while ((bytesRead = is.read(bytes)) != -1) {
            baos.write(bytes, 0, bytesRead);
        }
        byte[] bytesReceived = baos.toByteArray();
        baos.close();

        is.close();
        response = new String(bytesReceived);


    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        if (conn != null) {
            conn.disconnect();
        }
    }
}

public void put(String targetURL, String file)
{
    this.URL = targetURL;
    this.file = file;
}}
© www.soinside.com 2019 - 2024. All rights reserved.