【发布时间】:2015-06-30 16:06:03
【问题描述】:
从我的 Android 应用程序到 Google App Engine,我正在发布一个 zip 文件;我也在发布一个字符串。当 Google App Engine PHP 脚本运行时,我将 $_FILES 的值转储到日志中...
ob_start();
var_dump($_FILES);
$result = ob_get_clean();
syslog(LOG_DEBUG, "VAR DUMP\n" . $result . "\n");
我还记录了字符串的值。日志具有字符串输出,但没有 $_FILES 转储输出。我读过THIS LINK,但这似乎与Web 有关。我的 POST 文件的 Android 代码如下...
private void postExamplesZipToDrive(File file_zip){
RequestParams request_params = new RequestParams();
request_params.put("test", "Came thru");
//
try{ request_params.put("file_zip", file_zip); }
catch(FileNotFoundException e){
Log.e("postExamplesZipToDrive", "File not found");
Toast.makeText(this, "Unable to upload.", Toast.LENGTH_SHORT).show();
return;
}
AsyncHttpClient async_http_client = new AsyncHttpClient();
async_http_client.post(UPLOAD_URL, request_params, new JsonHttpResponseHandler(){
@Override
public void onSuccess(int code_status, Header[] headers, JSONArray success) {
Toast.makeText(getApplicationContext(), "" + code_status, Toast.LENGTH_SHORT).show();
super.onSuccess(code_status, headers, success);
}
@Override
public void onFailure(int code_status, Header[] headers, String string_response, Throwable throwable){
Toast.makeText(getApplicationContext(), "" + code_status, Toast.LENGTH_SHORT).show();
Log.e("onFailure", code_status + "\n" + string_response);
}
});
}
我的问题是,我是否正确发布了 .zip 文件?如何捕获通常存储在 $_FILES 中的上传文件?
【问题讨论】:
标签: php android google-app-engine