我想从文本文件中读取文本。在下面的代码中,发生了一个异常(这意味着它进入了catch
块)。我把文本文件放在应用程序文件夹中。我应该把这个文本文件(mani.txt)放在哪里才能正确阅读?
try
{
InputStream instream = openFileInput("E:\\test\\src\\com\\test\\mani.txt");
if (instream != null)
{
InputStreamReader inputreader = new InputStreamReader(instream);
BufferedReader buffreader = new BufferedReader(inputreader);
String line,line1 = "";
try
{
while ((line = buffreader.readLine()) != null)
line1+=line;
}catch (Exception e)
{
e.printStackTrace();
}
}
}
catch (Exception e)
{
String error="";
error=e.getMessage();
}
7条答案
按热度按时间xmq68pz91#
试试这个:
我假设你的文本文件在sd卡上
以下链接也可以帮助您:
How can I read a text file from the SD card in Android?
How to read text file in Android?
Android read text raw resource file
nqwrtyyt2#
如果你想从SD卡中读取文件。下面的代码可能对你有帮助。
如果你想从资源文件夹中读取文件
或者如果你想从
res/raw
文件夹中读取这个文件,在那里文件将被索引,并且可以通过R文件中的id访问:Good example of reading text file from res/raw folder
ih99xse13#
将文本文件放入资产文件夹...并从该文件夹读取文件...
参考链接如下…
http://www.technotalkative.com/android-read-file-from-assets/
http://sree.cc/google/reading-text-file-from-assets-folder-in-android
Reading a simple text file
希望它会有所帮助…
sh7euo9m4#
试试这个代码
camsedfj5#
小文本文件的最短形式(Kotlin中):
ckx4rj1h6#
试试这个
xurqigkl7#
//在Maifest中添加