测试文件是否为图像文件

测试文件是否为图像文件,第1张

测试文件是否为图像文件

这对我来说很好。希望我能帮上忙

import javax.activation.MimetypesFileTypeMap;import java.io.File;class Untitled {    public static void main(String[] args) {        String filepath = "/the/file/path/image.jpg";        File f = new File(filepath);        String mimetype= new MimetypesFileTypeMap().getContentType(f);        String type = mimetype.split("/")[0];        if(type.equals("image")) System.out.println("It's an image");        else  System.out.println("It's NOT an image");    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5031935.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存