我将文本文件存储在 assets 文件夹中,我的要求是在 textview 中逐点显示内容。如果存储在 assets 文件夹中的文本文件中没有空间,我可以访问内容。如果我将空间放在文本中文件然后我无法在空格后获取内容。如何实现这一点意味着逐点显示内容。例如我的文本文件如下
a)美洲)非洲)印度
我想要输出为
a) 美国
b) 非洲
c) 印度
Here is my code to access the text file from assest folder which I am getting.
InputStream in = this.getAssets().open("detailtext.txt");
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
line = reader.readLine();