我正在尝试阅读文本文件的前3个句子并将其显示为TextView。我的目的是在完全停止后拆分每个句子并将每个句子发送到数组列表。然后显示存储在数组列表中的前三个句子。这是我必须遍历文本并获得前3行的代码。
reader = new BufferedReader(
new InputStreamReader(getAssets().open("inputNews.txt")));
String line;
List<String> sentence = new ArrayList<String>();
while ((line = reader.readLine()) != null) {
sentence.add(line.split("[\\.\\?\\!][\\r\\n\\t ]+")[0] + ".");
if(sentence.size() < 4){
text.append(sentence);
text.append('\n');
}
然后我使用
输出此信息 TextView output= (TextView) findViewById(R.id.summtext);
output.setText((CharSequence) text);
然而,当我运行这个程序时,它会读取文件并打印出这样的文本,
[Sentence one..]
[Sentence one..Sentence two.]
[Sentence one..Sentence two. Sentence Three..]
我不知道它为什么会产生双重句号(..)和[]。我的目的是获得这样的结果,
Sentence one. Sentence two. Sentence three.
我该如何解决?
答案 0 :(得分:2)
您要将完整列表附加到每个句子的文本中。
更改此行:
text.append(sentence);
到此:
text.append(sentence.get(sentence.size()-1));
希望这有帮助。
答案 1 :(得分:1)
从 sentence.add 中删除 +&#34;。&#34; 以删除额外添加的句号(您的代码在文本中找到一个,而您是在这里添加第二个)。括号不会被删除。