//filename 1.xml
<category
hello world
</category>
//when iam trying to parse this file using the following code it throws String index out of range: -1
output: startPos: -1
endPosi: -1
String dataLine = nextLine.trim();
int startPos = dataLine.indexOf(startToken);
logger.debug("startPos: " + startPos);
int endPosi = dataLine.lastIndexOf(endToken);
logger.debug("endPosi: " + endPosi);
// 2.xml it parses this file which contains the following line
<category hello world </category>
//これら2つのファイルの唯一の違いは、最初のファイルの内容が3行にあり、2番目のファイルの内容が1行にあることです。