使用输入流读取文本文件
2022-09-01 20:19:40
我如何阅读像在Android应用程序中一样的文本文件:
"1.something written
2.in this file
3.is to be read by
4.the InputStream
..."
所以我可以返回一个字符串,如:
"something written\nin this file\nis to be read by\nthe InputStream"
我想到的是(伪代码):
make an inputstream
is = getAssest().open("textfile.txt"); //in try and catch
for loop{
string = is.read() and if it equals "." (i.e. from 1., 2., 3. etc) add "/n" ...
}