上传文件 - 安卓到谷歌应用引擎(PHP)



从我的Android应用程序到Google App Engine,我正在发布一个zip文件;我也正在发布一个字符串。 当谷歌应用引擎PHP脚本运行时,我转储$_FILES的价值到日志中...

ob_start();
var_dump($_FILES);
$result = ob_get_clean();
syslog(LOG_DEBUG, "VAR DUMPn" . $result . "n");

我还记录字符串的值。 日志具有字符串输出,但没有 $_FILES 转储输出。我读了这个链接,但这似乎与网络有关。我的安卓代码发布文件如下...

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 格式存储的上传文件?

您可以在 php55 中使用直接文件上传功能(请参阅 https://gae-php-tips.appspot.com/2015/03/09/direct-file-uploads-for-php-5-5/)。

相关内容

最新更新