Java判断文件是否为图片文件(GIF,PNG,JPG)

时间:2024-03-06 19:08:55

查看源代码:

 1 /**
 2       * 判断文件是否为图片文件(GIF,PNG,JPG)
 3      * @param srcFileName
 4      * @return
 5      */
 6     public static boolean isImage(File srcFilePath) {
 7         FileInputStream imgFile = null;
 8         byte[] b = new byte[10];
 9         int l = -1;
10         try {
11             imgFile = new FileInputStream(srcFilePath);
12             l = imgFile.read(b);
13             imgFile.close();
14         } catch (Exception e) {
15             return false;
16         }
17         
18         if (l == 10) {
19             byte b0 = b[0];
20             byte b1 = b[1];
21             byte b2 = b[2];
22             byte b3 = b[3];
23             byte b6 = b[6];
24             byte b7 = b[7];
25             byte b8 = b[8];
26             byte b9 = b[9];
27             
28             if (b0 == (byte) \'G\' && b1 == (byte) \'I\' && b2 == (byte) \'F\') {
29                 return true;
30             } else if (b1 == (byte) \'P\' && b2 == (byte) \'N\' && b3 == (byte) \'G\') {
31                 return true;
32             } else if (b6 == (byte) \'J\' && b7 == (byte) \'F\' && b8 == (byte) \'I\'&& b9 == (byte) \'F\') {
33                 return true;
34             } else {
35                 return false;
36             }
37         } else {
38             return false;
39         }
40     }