java.lang.StringIndexOutOfBoundsException: String index out of range: -1
出现这个问题,在eclipse里指出出错的行数,可是我不知道为什么出错,我用的是substring函数,参数的beginIndex为一个html文件中一个字符串的位置
String content3 = content.substring(content.indexOf( " <head "));
提示是这一行出错,可是我不知道错误在哪?怎么解决呢?
------解决方案--------------------
String content3 = null;
int pos = content.indexOf( " <head ");
if (pos > -1) content3 = content.substring(pos);