dongyou4411 2016-04-29 07:32
浏览 73
已采纳

在Android应用程序和php服务器站点上传图像和发送一些文本POST方法

IT IS SELF ANSWER QUESTION

I want to send some texts with my image which want to upload, I know that Apache HttpClient multipart is deprecated. so I want to do this with HTTPUrlConnection . here my code below, please help.

  • 写回答

1条回答 默认 最新

  • doulezhi5326 2016-05-01 11:55
    关注

    I got the answer: I just rewrite my code (the correct one). hope help others with same trouble. I want to send an image with username and token, it is gonna like this in android and php :

    protected Object doInBackground(Object[] params) {
        int fbyte,buffersize,cbuffer;
        int maxbuffer=1024*1024;
        final String lineEnd = "
    ";
        String twoHyphens = "--";
        String boundary = "*****" + Long.toString(System.currentTimeMillis()) + "*****";
        BufferedReader reader = null;
    
        try{
            String sfile = params[1].toString();
            File f=new File(sfile);
            FileInputStream fis=new FileInputStream(f);
            URL url=new URL(params[0].toString());
            HttpURLConnection con =(HttpURLConnection) url.openConnection();
            con.setDoInput(true);
            con.setDoOutput(true);
            con.setRequestMethod("POST");
            con.setUseCaches(false);
            con.setRequestProperty("Connection", "keep-Alive");
            con.setRequestProperty("ENCType", "multipart/form-data");
            con.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
            con.setRequestProperty("imagefile", sfile);
            DataOutputStream dos =new DataOutputStream(con.getOutputStream());
    
    
            // upload image :
            dos.writeBytes(twoHyphens + boundary + lineEnd);
            dos.writeBytes("Content-Disposition: form-data; name=\"imagefile\"; filename=\"" + sfile + "\""+ lineEnd);
            dos.writeBytes(lineEnd);
    
            fbyte=fis.available();
            buffersize=Math.min(fbyte, maxbuffer);
            byte[] buffer=new byte[buffersize];
            cbuffer=fis.read(buffer, 0, buffersize);
            while(cbuffer>0){
                dos.write(buffer,0,buffersize);
                fbyte=fis.available();
                buffersize=Math.min(fbyte, maxbuffer);
                cbuffer=fis.read(buffer,0,buffersize);
            }
            dos.writeBytes(lineEnd);
    
            String Username = "my username";
            String Token    = "my token";
    
            //write username :
            dos.writeBytes(twoHyphens+ boundary + lineEnd);
            dos.writeBytes("Content-Disposition: form-data; name=\"username\";" + lineEnd);
            dos.writeBytes("Content-Type: text/plain; charset=UTF-8" + lineEnd);
            dos.writeBytes(lineEnd + Username + lineEnd);
            dos.writeBytes(lineEnd);
    
            //write token :
            dos.writeBytes(twoHyphens+ boundary + lineEnd);
            dos.writeBytes("Content-Disposition: form-data; name=\"token\";" + lineEnd);
            dos.writeBytes("Content-Type: text/plain; charset=UTF-8" + lineEnd);
            dos.writeBytes(lineEnd + Token + lineEnd);
            dos.writeBytes(lineEnd);
    
            if(con.getResponseCode()==200){
                fis.close();
                dos.flush();
                dos.close();
            }
    
        }catch(final Exception e){ e.printStackTrace(); }
        return "";
    }// end doInBackground()
    

    php side :

    $username = $_POST['username'];
    $token = $_POST['token'];
    
    $target_path = "upload/". basename( $_FILES['imagefile']['name']);
    move_uploaded_file($_FILES['imagefile']['tmp_name'], $target_path);
    
    echo "username: ".$username." and token: ".$token;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥188 寻找能做王者评分提取的
  • ¥15 matlab用simulink求解一个二阶微分方程,要求截图
  • ¥30 乘子法解约束最优化问题的matlab代码文件,最好有matlab代码文件
  • ¥15 写论文,需要数据支撑
  • ¥15 identifier of an instance of 类 was altered from xx to xx错误
  • ¥100 反编译微信小游戏求指导
  • ¥15 docker模式webrtc-streamer 无法播放公网rtsp
  • ¥15 学不会递归,理解不了汉诺塔参数变化
  • ¥15 基于图神经网络的COVID-19药物筛选研究
  • ¥30 软件自定义无线电该怎样使用