根据文件的头信息判断文件类型

package readFileHead;import java.io.File;import java.io.FileInputStream;import javax.swing.filechooser.FileSystemView;import sun.io.CharToByteUTF8;public class Read { /**  * 判断文件是否为图片文件(GIF,PNG,JPG)  *   * @param srcFileName  * @return  */ public static void  isImage(String srcFileName) {  FileInputStream imgFile = null;  byte[] b = new byte[10];  int l = -1;  try {   imgFile = new FileInp

你可能感兴趣的:(根据文件的头信息判断文件类型)