Android文件选择器[关闭]
Posted
技术标签:
【中文标题】Android文件选择器[关闭]【英文标题】:Android file chooser [closed] 【发布时间】:2011-12-13 00:08:19 【问题描述】:我想做一个文件上传器。因此我需要一个文件选择器,但我不想自己写这个。我找到了 OI 文件管理器,我认为它适合我。 但是如何强制用户安装 OI 文件管理器? 如果我不能,有没有更好的方法在我的应用程序中包含文件管理器? 谢谢
【问题讨论】:
我用github.com/18446744073709551615/android-file-chooser-dialog github.com/criss721/Android-FileSelector ***.com/a/59104787/3141844 + github.com/criss721/Android-FileSelector 【参考方案1】:编辑(2012 年 1 月 2 日):
我创建了一个小型开源 Android 库项目来简化此过程,同时还提供了一个内置文件浏览器(以防用户没有存在)。它使用起来非常简单,只需要几行代码。
您可以在 GitHub 上找到它:aFileChooser。
原创
如果您希望用户能够选择系统中的任何文件,则需要包含您自己的文件管理器,或建议用户下载一个。我相信您能做的最好的事情就是在 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);
我的FileUtils.java
中的getPath()
方法是:
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;
【讨论】:
我什至还会将他们引导到市场上的应用程序。 但是我找不到 FileUtils.... @Bicou 感谢您的注意。您的轻推帮助我停止了懒惰并进行了一些小改动。 :-) 我刚刚将更新推送到包含许可证的库。 这个答案不考虑这样的uri:“content://com.android.providers.media.documents/document/image:62”。 @wangqi060934:你是如何设法使用这样的uri的?请分享您实现该功能的经验【参考方案2】:我为此使用了 AndExplorer,我的解决方案是弹出一个对话框,然后在市场上重定向以安装缺失的应用程序:
我的 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());
这个方法只是选择一个对话框,如果用户想从市场上安装外部应用程序
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();
【讨论】:
所以,对您的应用用户的要求之一是...安装 AndExplorer?!以上是关于Android文件选择器[关闭]的主要内容,如果未能解决你的问题,请参考以下文章