我正在尝试将 zipfile 从我的 android 应用程序发送到我们的服务器,但我不断收到 411 length required 错误。
这是我用来执行此操作的代码。
HttpPost post = new HttpPost("http://www.xyz.org/upload.json");
post.setHeader(C.constants.HTTP_CONTENT_TYPE, "application/octet-stream");
try {
FileInputStream fis = new FileInputStream("/data/data/org.myapp.appname/app_content.zip");
InputStreamEntity reqEntity = new InputStreamEntity(fis, -1);
post.setEntity(reqEntity);
String response = doPost(post);
Log.v(tag, "response from server " + response);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
我在这里做错了什么,我是否也知道如何在这篇文章中添加更多参数以将它们发送到服务器。