这对我来说很好。希望我能帮上忙
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"); }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)