如何在android手机中从外部存储读取文本文件



我想从android应用程序中读取一个文件。此文件位于通过OTG电缆连接到android平板电脑的外部存储(pendrive)中。

我搜索了很多关于"如何做到这一点"的内容,但都没有找到任何方法。你能帮我做那件事吗?

请使用以下代码从Ext Storage读取文件:-

String line, certstr = "";
try {
    BufferedReader reader = new BufferedReader(new FileReader("/mnt/sdcard/file.txt"));
        while( ( line = reader.readLine() ) != null)
        {               
            certstr += line;
        }                              
        reader.close();
} catch (FileNotFoundException e2) {
    // TODO Auto-generated catch block
     Toast.makeText(getApplicationContext(), "File not found in /mnt/sdcard/", 2).show();
    e2.printStackTrace();
    return false;
} catch (IOException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    return false;
}   

相关内容

  • 没有找到相关文章

最新更新