Я загрузил mp3-файл с использованием JSP.Есть ли способ узнать продолжительность загруженного mp3-файла в секундах?
Ниже приведена часть кода:
pos = file.indexOf("filename=\"");
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
int boundaryLocation = file.indexOf(boundary, pos) - 4;
int startPos = ((file.substring(0, pos)).getBytes()).length;
int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
System.out.println("Content Type:"+contentType);
System.out.println("PATAH:"+saveFile);
System.out.println("Start :"+startPos);
System.out.println("endPos :"+endPos);
System.out.println("contentLength"+formDataLength);//Size of the file in Bytes