【问题标题】:Android image upload to PHP server by randomly select image from sd card or filemanage通过从 sd 卡或文件管理中随机选择图像将 Android 图像上传到 PHP 服务器
【发布时间】:2013-11-05 09:14:50
【问题描述】:

实际上我只是在学习如何使用 php 将图像上传到服务器,因为我参考了 THIS LINK。在此链接中,他们只是在 sdcard 中上传特定图像,我想从 sd 卡中随机选择图像。任何人都知道如何从 sd 卡中随机选择一个文件并上传到服务器。

PHP 代码

<?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";
}

?>

src/UploadToServer.java

public class UploadToServer extends Activity {

TextView messageText;
Button uploadButton;
int serverResponseCode = 0;
ProgressDialog dialog = null;

String upLoadServerUri = null;

/**********  File Path *************/

final String uploadFilePath = "/mnt/sdcard/"; final String uploadFileName = "er.png";

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_upload_to_server);

    uploadButton = (Button)findViewById(R.id.uploadButton);
    messageText  = (TextView)findViewById(R.id.messageText);

    messageText.setText("Uploading file path :- '/mnt/sdcard/"+uploadFileName+"'");

    /************* Php script path ****************/
    upLoadServerUri = "http://localhost/picture_upload.php";

    uploadButton.setOnClickListener(new OnClickListener() {            
        @Override
        public void onClick(View v) {

            dialog = ProgressDialog.show(UploadToServer.this, "", "Uploading file...", true);

            new Thread(new Runnable() {
                    public void run() {
                         runOnUiThread(new Runnable() {
                                public void run() {
                                    messageText.setText("uploading started.....");
                                }
                            });                      

                         uploadFile(uploadFilePath + "" + uploadFileName);

                    }
                  }).start();        
            }
        });
}

public int uploadFile(String sourceFileUri) {


      String fileName = sourceFileUri;

      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(sourceFileUri); 

      if (!sourceFile.isFile()) {

           dialog.dismiss(); 

           Log.e("uploadFile", "Source File not exist :"
                               +uploadFilePath + "" + uploadFileName);

           runOnUiThread(new Runnable() {
               public void run() {
                   messageText.setText("Source File not exist :"
                           +uploadFilePath + "" + uploadFileName);
               }
           }); 

           return 0;

      }
      else
      {
           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", 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);   

                }

               // 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);

               if(serverResponseCode == 200){

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

                            String msg = "File Upload Completed.\n\n See uploaded file here : \n\n"
                                          +"http://localhost/picture_upload.php"
                                          +uploadFileName;

                            messageText.setText(msg);
                            Toast.makeText(UploadToServer.this, "File Upload Complete.", 
                                         Toast.LENGTH_SHORT).show();
                        }
                    });                
               }    

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

          } catch (MalformedURLException ex) {

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

              runOnUiThread(new Runnable() {
                  public void run() {
                      messageText.setText("MalformedURLException Exception : check script url.");
                      Toast.makeText(UploadToServer.this, "MalformedURLException", Toast.LENGTH_SHORT).show();
                  }
              });

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

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

              runOnUiThread(new Runnable() {
                  public void run() {
                      messageText.setText("Got Exception : see logcat ");
                      Toast.makeText(UploadToServer.this, "Got Exception : see logcat ", 
                              Toast.LENGTH_SHORT).show();
                  }
              });
              Log.e("Upload file to server Exception", "Exception : " 
                                               + e.getMessage(), e);  
          }
          dialog.dismiss();       
          return serverResponseCode; 

       } // End else block 
     } 

}

【问题讨论】:

    标签: php android image upload


    【解决方案1】:
    public class MainActivity extends Activity {
    Button b,b1;
    TextView messageText;
    String upLoadServerUri = null;
     private static final int SELECT_PICTURE = 1;
     private String selectedImagePath;
     int serverResponseCode = 0;
        ProgressDialog dialog = null;
     //   String selectedPath = "/mnt/sdcard/";
    // private ImageView img;
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
          //  img = (ImageView)findViewById(R.id.imageView1);
            messageText=(TextView)findViewById(R.id.textView1);
            b=(Button)findViewById(R.id.button1);
            b1=(Button)findViewById(R.id.button2);
            upLoadServerUri = "http://localhost/picture_upload.php";
            b.setOnClickListener(new OnClickListener() {
    
                @Override
                public void onClick(View v) {
                    // TODO Auto-generated method stub
    
                     Intent intent = new Intent();
                     intent.setType("image/*");
                     intent.setAction(Intent.ACTION_GET_CONTENT);
                     startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
    
                }
            });
            b1.setOnClickListener(new OnClickListener() {
    
                @Override
                public void onClick(View v) {
                    // TODO Auto-generated method stub
                    dialog = ProgressDialog.show(MainActivity.this, "", "Uploading file...", true);
    
                    new Thread(new Runnable() {
                            public void run() {
                                 runOnUiThread(new Runnable() {
                                        public void run() {
                                            messageText.setText("uploading started.....");
                                        }
                                    });                      
    
                                 uploadFile(selectedImagePath);
    
                            }
                          }).start();        
                    }
                });
    
    
        }
    
        public void onActivityResult(int requestCode, int resultCode, Intent data) {
            if (resultCode == RESULT_OK) {
                if (requestCode == SELECT_PICTURE) {
                    Uri selectedImageUri = data.getData();
                    selectedImagePath = getPath(selectedImageUri);
                    System.out.println("Image Path : " + selectedImagePath);
                   // img.setImageURI(selectedImageUri);
                    //uploadFile(selectedImagePath);
                }
            }
        }
    
        public int uploadFile(String sourceFileUri) {
    
    
              String fileName = sourceFileUri;
    
              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(sourceFileUri); 
    
              if (!sourceFile.isFile()) {
    
                   dialog.dismiss(); 
    
                   Log.e("uploadFile", "Source File not exist :"
                                       +selectedImagePath);
    
                   runOnUiThread(new Runnable() {
                       public void run() {
                           messageText.setText("Source File not exist :"
                                   +selectedImagePath);
                       }
                   }); 
    
                   return 0;
    
              }
              else
              {
                   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", 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);   
    
                        }
    
                       // 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);
    
                       if(serverResponseCode == 200){
    
                           runOnUiThread(new Runnable() {
                                public void run() {
    
                                    String msg = "File Upload Completed.\n\n See uploaded file here : \n\n"
                                                  +"http://localhost/picture_upload.php";
    
                                    messageText.setText(msg);
                                    Toast.makeText(MainActivity.this, "File Upload Complete.", 
                                                 Toast.LENGTH_SHORT).show();
                                }
                            });                
                       }    
    
                       //close the streams //
                       fileInputStream.close();
                       dos.flush();
                       dos.close();
    
                  } catch (MalformedURLException ex) {
    
                      dialog.dismiss();  
                      ex.printStackTrace();
    
                      runOnUiThread(new Runnable() {
                          public void run() {
                              messageText.setText("MalformedURLException Exception : check script url.");
                              Toast.makeText(MainActivity.this, "MalformedURLException", Toast.LENGTH_SHORT).show();
                          }
                      });
    
                      Log.e("Upload file to server", "error: " + ex.getMessage(), ex);  
                  } catch (Exception e) {
    
                      dialog.dismiss();  
                      e.printStackTrace();
    
                      runOnUiThread(new Runnable() {
                          public void run() {
                              messageText.setText("Got Exception : see logcat ");
                              Toast.makeText(MainActivity.this, "Got Exception : see logcat ", 
                                      Toast.LENGTH_SHORT).show();
                          }
                      });
                      Log.e("Upload file to server Exception", "Exception : " 
                                                       + e.getMessage(), e);  
                  }
                  dialog.dismiss();       
                  return serverResponseCode; 
    
               } // End else block 
             } 
    
        public String getPath(Uri uri) {
            String[] projection = { MediaStore.Images.Media.DATA };
            Cursor cursor = managedQuery(uri, projection, null, null, null);
            int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
            cursor.moveToFirst();
            return cursor.getString(column_index);
        }
    

    }

    【讨论】:

    【解决方案2】:

    您需要先获取 SD 卡中的所有文件,您可以为此使用 FileFilter。这是我为返回一个而写的 包含图像的目录列表。由此看来,应该 修改它以返回图像列表相当简单:

    FileFilter filterForImageFolders = new FileFilter() 
        {            
            public boolean accept(File folder) 
            { 
                try 
                { 
                    //Checking only directories, since we are checking for files within 
                    //a directory 
                    if(folder.isDirectory()) 
                    { 
                        File[] listOfFiles = folder.listFiles(); 
    
                        if (listOfFiles == null) return false; 
    
                        //For each file in the directory... 
                        for (File file : listOfFiles) 
                        {                            
                            //Check if the extension is one of the supported filetypes                           
                            //imageExtensions is a String[] containing image filetypes (e.g. "png")
                            for (String ext : imageExtensions) 
                            { 
                                if (file.getName().endsWith("." + ext)) return true; 
                            } 
                        }                        
                    } 
                    return false; 
                } 
                catch (SecurityException e) 
                { 
                    Log.v("debug", "Access Denied"); 
                    return false; 
                } 
            } 
        };
    
    EDIT: To clarify, to use this, you would do something like the below:
    
    File extStore = Environment.getExternalStorageDirectory();
    File[] imageDirs = extStore.listFiles(filterForImageFolders);
    

    【讨论】:

    • 我需要在哪里添加这些字段。 MT8
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-03-29
    • 2014-11-25
    • 2011-02-02
    • 2015-03-29
    • 2011-10-15
    相关资源
    最近更新 更多