Description
public String getFileType(File file) {
String fileType = "";
try
catch (Exception e)
{ e.printStackTrace(); } return fileType;
}
以上代码在识别以caff开头的txt文档时,会错误地识别为 audio/x-caf 音频类型
public String getFileType(File file) {
String fileType = "";
try
catch (Exception e)
{ e.printStackTrace(); } return fileType;
}
以上代码在识别以caff开头的txt文档时,会错误地识别为 audio/x-caf 音频类型