提取文件的扩展名
String ext = musicLocal.substring(musicLocal.lastIndexOf("."));
//得到"."最后出现的位置
musicLocal.lastIndexOf(".")
String id = "123454321";
String shortId, longId, Id;
shortId = id.substring(2, 7);
longId = id.substring(1, 8);
Id = id.substring(4);
System.out.println(shortId);
System.out.println(longId);
System.out.println(Id);
substring(x)是从字符串的的第x个字符截取到最后
substring(x,y)是从x到y前的位置停止