2016-08-28 14 views
0

私は自分のギャラリーで画像を選択してWebサーバに送信するためのアクティビティを構築しようとしています(他のPHP Webページから完全にファイルを受け取っているユーザ) 。 問題は、アプリケーションがリクエストを行う前に、コードがエラーを返します。ファイルにアクセスできません。私は自分のコードを変更する前に内部ストレージ内のファイルにアクセスできない

、私は

EACESS(Permissions Denied) 

は今、私はまさに私のコードのプリントを持っていました。

E/uploadFile: Source File not exist : 

だからここに私のコードです:

protected void onActivityResult(int requestCode, int resultCode, Intent data) { 

    super.onActivityResult(requestCode, resultCode, data); 

    if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) { 

     final Uri selectedImage = data.getData(); 
     String[] filePathColumn = {MediaStore.Images.Media.DATA}; 
     Cursor cursor = getContentResolver().query(selectedImage, filePathColumn, null, null, null); 
     cursor.moveToFirst(); 
     int columnIndex = cursor.getColumnIndex(filePathColumn[0]); 
     String picturePath = cursor.getString(columnIndex); 
     cursor.close(); 
     new Thread(new Runnable() { 
      public void run() { 
       runOnUiThread(new Runnable() { 
        public void run() { 
        } 
       }); 

       uploadFile(selectedImage.toString()); 

      } 
     }).start(); 
    } 
} 
public int uploadFile(String sourceFileUri) { 

    verifyStoragePermissions(ScanActivity.this); 
    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()) { 


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

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

     return 0; 

    } 
    else 
    { 
     try { 

      // open a URL connection to the Servlet 
      FileInputStream fileInputStream = new FileInputStream(sourceFile); 
      URL url = new URL("http://82.237.124.168/Legimetrie/reception_intervention_scan.php"); 

      // 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=\"fileToUpload\";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://www.androidexample.com/media/uploads/"; 

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

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

     } catch (MalformedURLException ex) { 

      ex.printStackTrace(); 

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

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

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

    } // End else block 
} 

そしてここでは、私のマニフェストファイルです:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.partenaires.legimetrie.legimetrieapp"> 
<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 
<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/Theme.AppCompat.Light.NoActionBar"> 
    <activity android:name=".MainActivity"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <activity android:name=".InscriptionActivity" /> 
    <activity android:name=".ConnexionActivity" /> 
    <activity android:name=".ServicesActivity" /> 
    <activity android:name=".InterventionRapideActivity" /> 
    <activity android:name=".InterventionDetailleeActivity" /> 
    <activity android:name=".ScanActivity" /> 
    <activity android:name=".ContactActivity"></activity> 
</application> 

あなたは多分、私がエラーをしてください取得するために助けることができますか?

(PS:私は外部ストレージにアクセスしたくないのですが、外部アクセス(許可が拒否されています)というエラーがありますので、間違っていることがあります)

+0

はあなたのマニフェストファイル内のストレージにアクセスするための権限を追加したことがありますか? – RamithDR

+0

はい、私は自分の投稿を編集しました。 – Orionss

答えて

1

Android Mバージョン以降、実行時に特定の権限をリクエストする必要があります。これはあなたを助ける必要があります。

Storage permission error in Marshmallow

+0

関数verifyStoragePermissionsで実行されていますが、外部ストレージでは動作しませんが、外部アクセスエラーです... – Orionss

+0

もちろんです。あなたはagalleryアプリによって表示された写真が他に存在すると思いますか? 'String picturePath'の値を見てください。そのような外部記憶域アクセスエラーが発生した場合は、logcatをポストする必要があります。 – greenapps

+0

私はパスを見て、それは "content:// media/external/images/media/4794"です。私はこのパスを本当に理解していません。手伝って頂けますか ? – Orionss

関連する問題