使用HTTP POST请求从android上传图像到服务器

时间:2014-06-12 08:43:07

标签: php android post

我想将我的Android应用程序中的图像上传到服务器。我不知道问题究竟在哪里,我正在使用的代码-it假设工作! - 。这是我第一次这样做,所以我对此知之甚少。

代码没有捕获任何异常,但它从不进入服务器响应为“200”的if语句..并且图像永远不会上传。

你可以回答以下问题吗?

1)这个属性是什么意思? conn.setRequestProperty(“uploaded_file”,“Thumbnail”+ user_id);

2)为什么这条线的含义?我知道它会使用数据输出流写入服务器,但内部的参数是什么? dos.writeBytes(“Content-Disposition:form-data; name = uploaded_file; filename = Thumbnail”+                                   user_id + lineEnd);

非常感谢您的耐心等待。

===========

public void upload_to_server(File [] sdDirList, int fileIndex) throws IOException
    {
        final ProgressDialog dialog = ProgressDialog.show(SettingsActivity.this, "", "Uploading Image...", true);
        final String upLoadServerUri = "server side php script goes here";


        //***File path ***//
        final String uploadFilePath = sdDirList[fileIndex].getCanonicalPath();
        runOnUiThread(new Runnable() {
            public void run() {
                Toast.makeText(SettingsActivity.this, uploadFilePath, 
                        Toast.LENGTH_SHORT).show();
     }
        });


       //***Display the dialog of the upload state***//

        new Thread(new Runnable() 
        {
            //Sending thread
                public void run() 
              {
                    dialog.show();

                    String fileName = uploadFilePath;
                    int serverResponseCode = 0;
                    HttpURLConnection conn = null;
                    DataOutputStream dos = null;  
                    String lineEnd = "\r\n";
                    String twoHyphens = "--";
                    String boundary = "*****";
                    int bytesRead, bytesAvailable, bufferSize;
                    byte[] buffer;
                    int maxBufferSize = 1 * 1024 * 1024; 
                    File sourceFile = new File(uploadFilePath); 

                    if (!sourceFile.isFile()) 
                    {
                        runOnUiThread(new Runnable() {
                            public void run() {
                                Toast.makeText(SettingsActivity.this, "File is not valid..", 
                                        Toast.LENGTH_SHORT).show();
                     }
                        });

                         dialog.dismiss(); 
                         return;
                    }

                    else
                    {
                        runOnUiThread(new Runnable() {
                            public void run() {
                                Toast.makeText(SettingsActivity.this, "Entered else block", 
                                        Toast.LENGTH_SHORT).show();
                     }
                        });

                         try 
                         { 

                               // open a URL connection to the Servlet
                             FileInputStream fileInputStream = new FileInputStream(sourceFile);
                             URL url = new URL(upLoadServerUri);

                             // Open a HTTP  connection to  the URL
                             conn = (HttpURLConnection) url.openConnection(); 
                             conn.setDoInput(true); // Allow Inputs
                             conn.setDoOutput(true); // Allow Outputs
                             conn.setUseCaches(false); // Don't use a Cached Copy
                             conn.setRequestMethod("POST");
                             conn.setRequestProperty("Connection", "Keep-Alive");
                             conn.setRequestProperty("ENCTYPE", "multipart/form-data");
                             conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
                             conn.setRequestProperty("uploaded_file", "Thumbnail"+user_id); 

                             dos = new DataOutputStream(conn.getOutputStream());

                             dos.writeBytes(twoHyphens + boundary + lineEnd); 
                             dos.writeBytes("Content-Disposition: form-data; name=uploaded_file;filename=Thumbnail"+
                                  user_id+ lineEnd);

                             dos.writeBytes(lineEnd);

                             // create a buffer of  maximum size
                             bytesAvailable = fileInputStream.available(); 

                             bufferSize = Math.min(bytesAvailable, maxBufferSize);
                             buffer = new byte[bufferSize];

                             // read file and write it into form...
                             bytesRead = fileInputStream.read(buffer, 0, bufferSize);  

                             while (bytesRead > 0) 
                             {

                               dos.write(buffer, 0, bufferSize);
                               bytesAvailable = fileInputStream.available();
                               bufferSize = Math.min(bytesAvailable, maxBufferSize);
                               bytesRead = fileInputStream.read(buffer, 0, bufferSize);   

                              }

                          // send multipart form data necesssary after file data...
                             dos.writeBytes(lineEnd);
                             dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);

                             // Responses from the server (code and message)
                             serverResponseCode = conn.getResponseCode();
                             String serverResponseMessage = conn.getResponseMessage();

                             Log.i("uploadFile", "HTTP Response is : "
                                     + serverResponseMessage + ": " + serverResponseCode);

                             runOnUiThread(new Runnable() {
                                 public void run() {
                                     Toast.makeText(SettingsActivity.this, "reached reponses's if", 
                                             Toast.LENGTH_SHORT).show();
                          }
                             });
                             if(serverResponseCode == 200)
                             {

                                 runOnUiThread(new Runnable() {
                                      public void run() 
                                      {


                                          Toast.makeText(SettingsActivity.this, "File Upload Complete.", 
                                                       Toast.LENGTH_SHORT).show();
                                      }
                                  });                
                             }    

                             //close the streams //
                             fileInputStream.close();
                             dos.flush();
                             dos.close();

                             runOnUiThread(new Runnable() {
                                 public void run() {
                                     Toast.makeText(SettingsActivity.this, "End of Try", 
                                             Toast.LENGTH_SHORT).show();
                          }
                             });

                        } 
                         catch (MalformedURLException ex) 
                        {
                             runOnUiThread(new Runnable() {
                                 public void run() {
                                     Toast.makeText(SettingsActivity.this, "in first catch", 
                                                                         Toast.LENGTH_SHORT).show();
                                 }
                             });


                            dialog.dismiss();  
                            ex.printStackTrace();

                            runOnUiThread(new Runnable() {
                                public void run() {
                                    Toast.makeText(SettingsActivity.this, "MalformedURLException", 
                                                                        Toast.LENGTH_SHORT).show();
                                }
                            });

                            Log.e("Upload file to server", "error: " + ex.getMessage(), ex);  

                        } 
                         catch (Exception e) 
                         {
                             runOnUiThread(new Runnable() {
                                 public void run() {
                                     Toast.makeText(SettingsActivity.this, "in second catch", 
                                                                         Toast.LENGTH_SHORT).show();
                                 }
                             });

                            dialog.dismiss();  
                            e.printStackTrace();

                            runOnUiThread(new Runnable() {
                                public void run() {
                                    Toast.makeText(SettingsActivity.this, "Something went wrong..", 
                                            Toast.LENGTH_SHORT).show();
                                }
                            });
                            Log.e("Upload file to server Exception", "Exception : "
                                                             + e.getMessage(), e);  
                        }

                         runOnUiThread(new Runnable() {
                             public void run() {
                                 Toast.makeText(SettingsActivity.this, "end of else", 
                                                                     Toast.LENGTH_SHORT).show();
                             }
                         });
                        dialog.dismiss();       

                     } // End else block 




              }
        }).start();  

    }

============================

PHP SCRIPT:

<?php
  
    $file_path = "uploads/";
     
    $file_path = $file_path . basename( $_FILES['uploaded_file']['name']);
    if(move_uploaded_file($_FILES['uploaded_file']['tmp_name'], $file_path)) {
        echo "success";
    } else{
        echo "fail";
    }
 ?>

3 个答案:

答案 0 :(得分:1)

1)

conn.setRequestProperty("uploaded_file", "Thumbnail"+user_id); 

有两个参数,

第一个参数:它是一个变量名(必须与php文件中定义的相同),在你的php文件中定义获取文件..

第二个参数:它要上传的文件..

2)

dos.writeBytes("Content-Disposition: form-data; name=uploaded_file;filename=Thumbnail"+ user_id+ lineEnd);

它就像你传递给DataOutputStream的查询字符串一样..这里你传递文件throug变量(你定义了它的上部)和该文件的文件名..

这里, uploaded_file是在服务器(php)和

中定义的变量名

name&amp; filename是字段名称(请勿更改)..您可以根据需要更改其值

如果您想要上传文件的精彩教程,请访问此链接: Multipart HTTP Requests

谢谢...

答案 1 :(得分:0)

Try This code and this library add httpmime-4.1-beta1.jar :  


  String url = "Your Url";


                HttpClient client = new DefaultHttpClient();
                client.getParams().setParameter(
                        CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
                HttpPost postMethod = new HttpPost(url);


                MultipartEntity entity = new MultipartEntity();



                try {

                        File file1 = new File("Your image Path");
                        FileBody bin1 = new FileBody(file1, "images/jpeg");

                        entity.addPart("uploaded_file", bin1);

                    postMethod.setEntity(entity);
                    HttpResponse response;
                    response = client.execute(postMethod);

                    String result = EntityUtils.toString(response.getEntity());

                }

                catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

答案 2 :(得分:0)

文件上传代码:

String upLoadServerUri_here = "Your url " ;



 private int serverResponseCode = 0;
     private Context mContext ;

public int upload_to_server(final String imagepath) {

        String fileName = imagepath;
        HttpURLConnection conn = null;
        DataOutputStream dos = null; 
        String lineEnd = "\r\n";
        String twoHyphens = "--";
        String boundary = "*****";
        int bytesRead, bytesAvailable, bufferSize;
        byte[] buffer;
        int maxBufferSize = 1 * 1024 * 1024 ;
        File sourceFile = new File(imagepath);

        if (!sourceFile.isFile()) {
          Log.e("uploadFile", "Source File not exist :" + imagepath);

            ((Activity) mContext).runOnUiThread(new Runnable() {
                 public void run() {

                     Toast.makeText(mContext, "Source File not found "+imagepath ,Toast.LENGTH_LONG).show();     
              }
             });

             return 0;

        }
        else
        {
             try {


                 FileInputStream fileInputStream = new FileInputStream(sourceFile);
                 URL url = new URL(upLoadServerUri_here);


                 // Open a HTTP  connection to  the URL
                 conn = (HttpURLConnection) url.openConnection();
                 conn.setDoInput(true);
                 conn.setDoOutput(true); 
                 conn.setUseCaches(false);
                 conn.setRequestMethod("POST");
                 conn.setRequestProperty("Connection", "attachment");
                 conn.setRequestProperty("ENCTYPE", "multipart/form-data");
                 conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
                 conn.setRequestProperty("uploaded_file", fileName);

                 dos = new DataOutputStream(conn.getOutputStream());

                 dos.writeBytes(twoHyphens + boundary + lineEnd);
                 dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\""
                                           + fileName + "\"" + lineEnd);

                 dos.writeBytes(lineEnd);
                //create a buffer of  maximum size
                 bytesAvailable = fileInputStream.available();
                 bufferSize = Math.min(bytesAvailable, maxBufferSize);
                 buffer = new byte[bufferSize];

                 // read file and write it into form...
                 bytesRead = fileInputStream.read(buffer, 0, bufferSize); 
                  while (bytesRead > 0) {

                   dos.write(buffer, 0, bufferSize);
                   bytesAvailable = fileInputStream.available();
                   bufferSize = Math.min(bytesAvailable, maxBufferSize);
                   bytesRead = fileInputStream.read(buffer, 0, bufferSize);  

                  }


                 dos.writeBytes(lineEnd);
                 dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
                 serverResponseCode = conn.getResponseCode();
                 String serverResponseMessage = conn.getResponseMessage();

                 Log.i("uploadFile", "HTTP Response is : " + serverResponseMessage + ": " + serverResponseCode);
                 Toast.makeText(mContext, "Got.."+serverResponseMessage, Toast.LENGTH_SHORT).show(); 


                 if(serverResponseCode == 200){

                 //chk it @ C:\inetpub\wwwroot\Uploads\Work
             ((Activity) mContext).runOnUiThread(new Runnable() {
                          public void run() {


                              Toast.makeText(mContext, "sucesss..", Toast.LENGTH_SHORT).show();
                          }
                      });               
                 }   

                 //close the streams //
                 fileInputStream.close();
                 dos.flush();
                 dos.close();

            } catch (MalformedURLException ex) {

              //  dialog.dismiss(); 
                ex.printStackTrace();

                ((Activity) mContext).runOnUiThread(new Runnable() {
                    public void run() {

                        Toast.makeText(mContext, "MalformedURLException", Toast.LENGTH_SHORT).show();
                    }
                });

                Log.e("Upload file to server", "error: " + ex.getMessage(), ex); 
            } catch (Exception e) {


                e.printStackTrace();

                ((Activity) mContext).runOnUiThread(new Runnable() {
                    public void run() {

                        Toast.makeText(mContext, "Got Exception : see logcat "+serverResponseCode, Toast.LENGTH_SHORT).show();
                    }
                });


                Log.e("Upload file to server Exception", "Exception : "  + e.getMessage(), e); 
            }

            return serverResponseCode;

         } 
       }

其中 imagepath =&#34; yourselectedimage with full path&#34;;