Android:使用隐式意图

时间:2016-10-02 21:17:47

标签: android android-intent bufferedreader

问题:我尝试使用隐式Intent(ACTION_GET_CONTENT)打开txt文件,并将txt文件的内容存储到arraylist中。当我尝试使用来自Uri getPath()的文件路径打开文件并创建一个BufferedReader对象以从文本文件中读取时,我收到一条错误消息,指出此类文件路径不存在。

在Logcat中,它说我的文件路径为"/document/1505-2A0C:Download/text.txt" 当我试图打开文件时,它说:

"W/System.err: java.io.FileNotFoundException:
        /document/1505-2A0C:Download/text.txt: open failed: 
        ENOENT (No such file or directory)"

这是我的代码:

@Override
public void onClick(View v) {
    // Send implicit intent to load a file from directory
    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    intent.setType("text/plain");
    startActivityForResult(Intent.createChooser(intent, 
           "Load a file from directory"), REQUEST_CODE_SEARCH);
}

onActivityResult()

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_CODE_SEARCH) {
        try {
            Uri uri = data.getData();
            String filepath = uri.getPath();

            // In logcat : File path: /document/1505-2A0C:Download/text.txt
            Log.d("File path", filepath);

            File file = new File(filepath);
            ArrayList<String> strings = new ArrayList<>();

            /* Problem occurs here : I do not get correct file path to open a FileReader.
            In logcat: "W/System.err: java.io.FileNotFoundException:
            /document/1505-2A0C:Download/text.txt: open failed: 
            ENOENT (No such file or directory)"*/
            BufferedReader br = new BufferedReader(new FileReader(file));

            // Rest of code that converts txt file's content into arraylist
        } catch (IOException e) {
            // Codes that handles IOException
        }
    }
}

总结:我得到"/document/1505-2A0C:Download/text.txt"文件路径,当我使用文件路径在BufferedReader中打开文件时,它说没有这样的目录。

我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

  

当我尝试使用来自Uri的getPath()的文件路径打开文件并创建一个BufferedReader对象以从文本文件中读取时,我得到一个错误,说这样的文件路径不存在。

这是因为ACTION_GET_CONTENT没有返回文件。它返回Uri,而Uri不必指向文件。

摆脱所有File的东西。使用ContentResolveropenInputStream()获取InputStream标识的内容Uri。请使用InputStream

读入您的文字