15

我需要创建将打开文件管理器(如果已安装)的意图,并且我希望文件管理器仅向用户显示 txt 文件,因此用户无法选择扩展名错误的文件。

    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 txt file"),
                FILE_SELECT_CODE);
    } catch (android.content.ActivityNotFoundException ex) {
        // Potentially direct the user to the Market with a Dialog
        Toast.makeText(this.getActivity(), "Please install a File Manager.", 
                Toast.LENGTH_SHORT).show();
    }
}

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    switch (requestCode) {
    case FILE_SELECT_CODE:      
    if (resultCode == Activity.RESULT_OK) {  
        // Get the Uri of the selected file 
        Uri uri = data.getData();
        String path = uri.getPath();
        input = new File(path);
        try {
            txtParser = new TxtFileParser(input);
        } catch (FileNotFoundException e) {
            /* Exception handler must be here! */
        }
    }           
    break;
}
    super.onActivityResult(requestCode, resultCode, data);
}

我设法做到了。但我不知道如何定义 txt 扩展名。

4

2 回答 2

16

我希望文件管理器只向用户显示 txt 文件,因此用户无法选择扩展名错误的文件

这在字面上是不可能的。欢迎您使用 MIME 类型text/plain代替*/*,但是:

  • 不能保证这只会返回带有.txt扩展名的文件
  • 无法保证设备上是否有任何应用程序可以处理ACTION_GET_CONTENT该 MIME 类型
  • 无法保证任何“文件管理器”都会尊重您的 MIME 类型;他们可能会选择显示所有文件
于 2013-01-31T14:12:17.967 回答
0

对 MaterialFilePicker() 进行研究。

new MaterialFilePicker().withFilter(Pattern.compile(".*\.txt$")).start();

像上面一样,您可以使用模式匹配来做到这一点。

于 2017-10-11T18:09:18.383 回答