所以我有一个检查文件类型的功能,我正在通过签名检查文件,但对于 GIF 文件它不起作用
def checkPhotoType(file: File): Option[String] = {
val param = new DataInputStream(new BufferedInputStream(new FileInputStream(file)))
if (param.readInt() == 0xFFd8FFe0 | param.readInt() == 0xFFd8FFe1 )
Some("jpg/jpeg")
if(param.readInt() == 0x474946383961L)
Some("gif")
else None
白板的微信
慕田峪4524236
胡子哥哥
相关分类