不懂String prefix = fileName.substring(index+1,filename.length());//获取文件的后缀
//获取文件名中最后一次出现"."号的位置
int index = fileName.lastIndexOf('.');
//获取文件的后缀
String prefix = fileName.substring(index+1,fileName.length());
这个括号里面的不懂,(index+1,fileName.length())求大神解释一下