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" ...
}