我在文件中有以下句子的开始和结束索引。
Begin:1583 End:1631
Begin:2284 End:2324
现在我必须通过读取特定文件来检查这些索引是否存在于有效的句子中。我尝试过使用 BreakIterator。但我不明白如何检查上述索引是否存在于有效的句子中。
我试过的代码是
public class Breakiterator {
public static void main(String[] args) {
BufferedReader br = null;
String sCurrentLine = null;
String l=null;
try {
br = new BufferedReader(new FileReader("C:/test.txt "));
while ((sCurrentLine = br.readLine()) != null) {
BreakIterator i=BreakIterator.getSentenceInstance(Locale.GERMANY);
i.setText(sCurrentLine);
for(int s=i.first(), e=i.next(); e>=0; s=e, e= i.next())
{
System.out.println("Sentence: from "+s+" to "+e+" \""+sCurrentLine.substring(s, e)+'"');
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)br.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
}