[java] 


 ​

  1. import java.io.FileInputStream;
  2. import java.io.IOException;
  3. import java.util.HashMap;

  4. /**
  5. * 获取和判断文件头信息
  6. *
  7. * @author Sud
  8. *
  9. */
  10. public class GetTypeByHead {
  11. // 缓存文件头信息-文件头信息
  12. public static final HashMap<String, String> mFileTypes = new HashMap<String, String>();
  13. static {
  14. // images
  15. mFileTypes.put("FFD8FF", "jpg");
  16. mFileTypes.put("89504E47", "png");
  17. mFileTypes.put("47494638", "gif");
  18. mFileTypes.put("49492A00", "tif");
  19. mFileTypes.put("424D", "bmp");
  20. //
  21. mFileTypes.put("41433130", "dwg"); // CAD
  22. mFileTypes.put("38425053", "psd");
  23. mFileTypes.put("7B5C727466", "rtf"); // 日记本
  24. mFileTypes.put("3C3F786D6C", "xml");
  25. mFileTypes.put("68746D6C3E", "html");
  26. mFileTypes.put("44656C69766572792D646174653A", "eml"); // 邮件
  27. mFileTypes.put("D0CF11E0", "doc");
  28. mFileTypes.put("5374616E64617264204A", "mdb");
  29. mFileTypes.put("252150532D41646F6265", "ps");
  30. mFileTypes.put("255044462D312E", "pdf");
  31. mFileTypes.put("504B0304", "docx");
  32. mFileTypes.put("52617221", "rar");
  33. mFileTypes.put("57415645", "wav");
  34. mFileTypes.put("41564920", "avi");
  35. mFileTypes.put("2E524D46", "rm");
  36. mFileTypes.put("000001BA", "mpg");
  37. mFileTypes.put("000001B3", "mpg");
  38. mFileTypes.put("6D6F6F76", "mov");
  39. mFileTypes.put("3026B2758E66CF11", "asf");
  40. mFileTypes.put("4D546864", "mid");
  41. mFileTypes.put("1F8B08", "gz");
  42. mFileTypes.put("4D5A9000", "exe/dll");
  43. mFileTypes.put("75736167", "txt");
  44. }

  45. /**
  46. * 根据文件路径获取文件头信息
  47. *
  48. * @param filePath
  49. *            文件路径
  50. * @return 文件头信息
  51. */
  52. public static String getFileType(String filePath) {
  53. System.out.println(getFileHeader(filePath));
  54. System.out.println(mFileTypes.get(getFileHeader(filePath)));
  55. return mFileTypes.get(getFileHeader(filePath));
  56. }

  57. /**
  58. * 根据文件路径获取文件头信息
  59. *
  60. * @param filePath
  61. *            文件路径
  62. * @return 文件头信息
  63. */
  64. public static String getFileHeader(String filePath) {
  65. FileInputStream is = null;
  66. String value = null;
  67. try {
  68. is = new FileInputStream(filePath);
  69. byte[] b = new byte[4];
  70. /*
  71. * int read() 从此输入流中读取一个数据字节。 int read(byte[] b) 从此输入流中将最多 b.length
  72. * 个字节的数据读入一个 byte 数组中。 int read(byte[] b, int off, int len)
  73. * 从此输入流中将最多 len 个字节的数据读入一个 byte 数组中。
  74. */
  75. is.read(b, 0, b.length);
  76. value = bytesToHexString(b);
  77. } catch (Exception e) {
  78. } finally {
  79. if (null != is) {
  80. try {
  81. is.close();
  82. } catch (IOException e) {
  83. }
  84. }
  85. }
  86. return value;
  87. }

  88. /**
  89. * 将要读取文件头信息的文件的byte数组转换成string类型表示
  90. *
  91. * @param src
  92. *            要读取文件头信息的文件的byte数组
  93. * @return 文件头信息
  94. */
  95. private static String bytesToHexString(byte[] src) {
  96. StringBuilder builder = new StringBuilder();
  97. if (src == null || src.length <= 0) {
  98. return null;
  99. }
  100. String hv;
  101. for (int i = 0; i < src.length; i++) {
  102. // 以十六进制(基数 16)无符号整数形式返回一个整数参数的字符串表示形式,并转换为大写
  103. hv = Integer.toHexString(src[i] & 0xFF).toUpperCase();
  104. if (hv.length() < 2) {
  105. builder.append(0);
  106. }
  107. builder.append(hv);
  108. }
  109. System.out.println(builder.toString());
  110. return builder.toString();
  111. }

  112. public static void main(String[] args) throws Exception {
  113. final String fileType = getFileType("D:\\Ry4S_JAVA.dll");
  114. System.out.println(fileType);
  115. }
  116. }