94

我想創建一個文件上傳器。因此,我需要一個文件選擇器,但我不想自己寫這個。我發現OI文件管理器,我認爲它適合我。 但是我怎麼能強制用戶安裝OI文件管理器? 如果我不能,是否有更好的方法在我的應用程序中包含文件管理器? THXAndroid文件選擇器

+0

我使用https://github.com/18446744073709551615/android-file-chooser-dialog – 18446744073709551615

回答

229

編輯2012年1月2日):

我創建了一個小型的開源的Android庫項目,簡化了這一過程,同時還提供了內置文件瀏覽器(萬一用戶沒有一個禮物)。它使用起來非常簡單,只需要幾行代碼。

你可以在GitHub上找到它:aFileChooser


ORIGINAL

如果你希望用戶可以選擇系統中的任何文件,您將需要包括你自己的文件管理器,或建議用戶下載一個。我相信你能做到的最好是認準「開」的內容在Intent.createChooser()這樣的:

private static final int FILE_SELECT_CODE = 0; 

private void showFileChooser() { 
    Intent intent = new Intent(Intent.ACTION_GET_CONTENT); 
    intent.setType("*/*"); 
    intent.addCategory(Intent.CATEGORY_OPENABLE); 

    try { 
     startActivityForResult(
       Intent.createChooser(intent, "Select a File to Upload"), 
       FILE_SELECT_CODE); 
    } catch (android.content.ActivityNotFoundException ex) { 
     // Potentially direct the user to the Market with a Dialog 
     Toast.makeText(this, "Please install a File Manager.", 
       Toast.LENGTH_SHORT).show(); 
    } 
} 

這樣,你會在onActivityResult()聽所選文件的Uri像這樣:

@Override 
protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
    switch (requestCode) { 
     case FILE_SELECT_CODE: 
     if (resultCode == RESULT_OK) { 
      // Get the Uri of the selected file 
      Uri uri = data.getData(); 
      Log.d(TAG, "File Uri: " + uri.toString()); 
      // Get the path 
      String path = FileUtils.getPath(this, uri); 
      Log.d(TAG, "File Path: " + path); 
      // Get the file instance 
      // File file = new File(path); 
      // Initiate the upload 
     } 
     break; 
    } 
    super.onActivityResult(requestCode, resultCode, data); 
} 

getPath()在我FileUtils.java方法是:

public static String getPath(Context context, Uri uri) throws URISyntaxException { 
    if ("content".equalsIgnoreCase(uri.getScheme())) { 
     String[] projection = { "_data" }; 
     Cursor cursor = null; 

     try { 
      cursor = context.getContentResolver().query(uri, projection, null, null, null); 
      int column_index = cursor.getColumnIndexOrThrow("_data"); 
      if (cursor.moveToFirst()) { 
       return cursor.getString(column_index); 
      } 
     } catch (Exception e) { 
      // Eat it 
     } 
    } 
    else if ("file".equalsIgnoreCase(uri.getScheme())) { 
     return uri.getPath(); 
    } 

    return null; 
} 
+1

我甚至可以直接將它們引導至市場上的應用程序。 –

+1

Thx,但我得到的內容uri --- content://org.openintents.cmfilemanager/mimetype//mnt/sdcard/1318638826728.jpg 而不是文件路徑。 我可以將它轉換成文件路徑嗎? – Bear

+0

已更新的答案顯示如何獲取文件路徑,以及創建一個File實例,爲您提供諸如file.getName()和file.getAbsolutePath()之類的便利回調。 –

-3

我用AndExplorer爲了這個目的,我的解決方案我s彈出一個對話框,然後在市場上重定向安裝misssing應用程序:

我的startCreation正試圖調用外部文件/目錄選擇器。如果缺少調用show installResultMessage函數。

private void startCreation(){ 
    Intent intent = new Intent(); 
    intent.setAction(Intent.ACTION_PICK); 
    Uri startDir = Uri.fromFile(new File("/sdcard")); 

    intent.setDataAndType(startDir, 
      "vnd.android.cursor.dir/lysesoft.andexplorer.file"); 
    intent.putExtra("browser_filter_extension_whitelist", "*.csv"); 
    intent.putExtra("explorer_title", getText(R.string.andex_file_selection_title)); 
    intent.putExtra("browser_title_background_color", 
      getText(R.string.browser_title_background_color)); 
    intent.putExtra("browser_title_foreground_color", 
      getText(R.string.browser_title_foreground_color)); 
    intent.putExtra("browser_list_background_color", 
      getText(R.string.browser_list_background_color)); 
    intent.putExtra("browser_list_fontscale", "120%"); 
    intent.putExtra("browser_list_layout", "2"); 

    try{ 
     ApplicationInfo info = getPackageManager() 
           .getApplicationInfo("lysesoft.andexplorer", 0); 

      startActivityForResult(intent, PICK_REQUEST_CODE); 
    } catch(PackageManager.NameNotFoundException e){ 
     showInstallResultMessage(R.string.error_install_andexplorer); 
    } catch (Exception e) { 
     Log.w(TAG, e.getMessage()); 
    } 
} 

這methos只是拿起一個對話框,如果用戶想從市場

private void showInstallResultMessage(int msg_id) { 
    AlertDialog dialog = new AlertDialog.Builder(this).create(); 
    dialog.setMessage(getText(msg_id)); 
    dialog.setButton(getText(R.string.button_ok), 
      new DialogInterface.OnClickListener() { 

       @Override 
       public void onClick(DialogInterface dialog, int which) { 
        finish(); 
       } 
      }); 
    dialog.setButton2(getText(R.string.button_install), 
      new DialogInterface.OnClickListener() { 

       @Override 
       public void onClick(DialogInterface dialog, int which) { 
        Intent intent = new Intent(Intent.ACTION_VIEW); 
        intent.setData(Uri.parse("market://details?id=lysesoft.andexplorer")); 
        startActivity(intent); 
        finish(); 
       } 
      }); 
    dialog.show(); 
} 
+0

因此,你的應用程序用戶的需求之一是...安裝AndExplorer?! –

-3

安裝的外部應用程序,我認爲你不應該「強制」用戶做一些事情。如果你只需要一個簡單的文件選擇器,你可以自己寫。另一方面,如果你不想這樣做(對於你的用戶),你就會遠離你的用戶。

或者你可以使用https://code.google.com/p/android-file-chooser/

+3

鏈接已死。 –

+0

也許,http://code.google.com/p/android-file-chooser/ – 18446744073709551615

+0

http://code.google.com/p/afiledialog/ – 18446744073709551615