duanming7833 2015-11-04 15:09
浏览 44
已采纳

Android文件上传到某些设备上的php脚本问题

In my android app I upload some files to a php script. The code works fine on my tablet, but on some other devices, the upload failes. The size of the files are the some on the devices.

My upload code:

 HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost("myurl"
                + "/Mysql_Filesave.php");
        JSONObject json = new JSONObject();

        json.put("Type", type);
        json.put("FileName", files[i].getName());
        json.put("LocalPath", path);
        JSONArray postjson = new JSONArray();
        postjson.put(json);


        // Post the data:
        httppost.setHeader("json", json.toString());
        httppost.getParams().setParameter("jsonpost", postjson);

        MultipartEntity reqEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
        FileBody fileBody = new FileBody(files[i]);
        reqEntity.addPart("file", fileBody);
        httppost.setEntity(reqEntity);      

        HttpResponse response = httpclient.execute(httppost);

My PHP Code for checking if there is a file:

if (!isset($_FILES['file']['tmp_name'])) {      
    die("No file available");
}

So some devices die on this check. The files are about 10 megabytes big. On the php server I allow files up to 50M.

What can the problem be? I don't have a clue, because on some devices it works, on other not.

Best regards, Peter

  • 写回答

1条回答 默认 最新

  • duandazhen7306 2015-11-10 07:52
    关注

    Found the problem myself: Fixed some php.ini parameters (max memory, max_post_size), now the upload is working

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 fesafe材料库问题
  • ¥35 beats蓝牙耳机怎么查看日志
  • ¥15 Fluent齿轮搅油
  • ¥15 八爪鱼爬数据为什么自己停了
  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统