我有一个Android应用程序,它使用apache httpcomponents的multipartentity。该应用程序使用HTTP请求将文件上载到php脚本。但是,我上传的文件(.ogg)最终在$ _POST而不是$ _FILES,它看起来像二进制,虽然我可能是错的。
我有chrome rest扩展,我使用它来发送一个multipart / form-data请求和完全相同的.ogg文件,文件最终在正确的位置($ _FILES)。
Android代码如下:
// Send the file to the server.
// Create HTTP objects.
// Request.
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(ACTION);
// Response.
HttpResponse httpResponse;
httpClient.getParams().setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
MultipartEntity mpEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
ContentBody cbFile = new FileBody(mediaFile, "audio/ogg");
mpEntity.addPart("file", cbFile);
httpPost.setEntity(mpEntity);
// Execute.
httpResponse = httpClient.execute(httpPost);
// Evaluate the response.
int statusCode = httpResponse.getStatusLine().getStatusCode();
// Make sure everythings okay.
if (statusCode == 200) {
HttpEntity resEntity = httpResponse.getEntity();
if (resEntity != null) {
String body = EntityUtils.toString(resEntity);
resEntity.consumeContent();
Log.d("APP_STATUS", body);
}
}
httpClient.getConnectionManager().shutdown();
非常简单的PHP脚本:
<?php
echo "\$_POST";
var_dump($_POST);
echo "\$_FILES";
var_dump($_FILES);
?>
使用应用时的响应:
使用Chrome REST扩展程序时的响应:
如果有人对我在史诗般的失败中有任何见解,请告诉我。
答案 0 :(得分:0)
尝试使用实体构建器
HttpEntity mpEntity = MultipartEntityBuilder.create()
.addBinaryBody(
"file", cbFile, ContentType.create("audio/ogg"), cbFile.getName())
.build();