Android中Java根据文件头获取文件类型的方法
程序员文章站
2024-03-06 08:13:43
本文实例讲述了android中java根据文件头获取文件类型的方法。分享给大家供大家参考,具体如下:
前面讲过android系统内部的mediafile类来获取文件类型的...
本文实例讲述了android中java根据文件头获取文件类型的方法。分享给大家供大家参考,具体如下:
前面讲过android系统内部的mediafile类来获取文件类型的办法,这个类主要是根据文件的扩展名来判断,其准确性不是很好。具体可查看android系统使用mediafile类判断音频文件类型。其实,获取文件类型最好的办法便是根据文件头信息来判断。下面贴出相关代码:
public class filetype { public static final hashmap<string, string> mfiletypes = new hashmap<string, string>(); static { //images mfiletypes.put("ffd8ff", "jpg"); mfiletypes.put("89504e47", "png"); mfiletypes.put("47494638", "gif"); mfiletypes.put("49492a00", "tif"); mfiletypes.put("424d", "bmp"); // mfiletypes.put("41433130", "dwg"); //cad mfiletypes.put("38425053", "psd"); mfiletypes.put("7b5c727466", "rtf"); //日记本 mfiletypes.put("3c3f786d6c", "xml"); mfiletypes.put("68746d6c3e", "html"); mfiletypes.put("44656c69766572792d646174653a", "eml"); //邮件 mfiletypes.put("d0cf11e0", "doc"); mfiletypes.put("5374616e64617264204a", "mdb"); mfiletypes.put("252150532d41646f6265", "ps"); mfiletypes.put("255044462d312e", "pdf"); mfiletypes.put("504b0304", "zip"); mfiletypes.put("52617221", "rar"); mfiletypes.put("57415645", "wav"); mfiletypes.put("41564920", "avi"); mfiletypes.put("2e524d46", "rm"); mfiletypes.put("000001ba", "mpg"); mfiletypes.put("000001b3", "mpg"); mfiletypes.put("6d6f6f76", "mov"); mfiletypes.put("3026b2758e66cf11", "asf"); mfiletypes.put("4d546864", "mid"); mfiletypes.put("1f8b08", "gz"); mfiletypes.put("", ""); mfiletypes.put("", ""); } public static string getfiletype(string filepath) { return mfiletypes.get(getfileheader(filepath)); } //获取文件头信息 public static string getfileheader(string filepath) { fileinputstream is = null; string value = null; try { is = new fileinputstream(filepath); byte[] b = new byte[3]; is.read(b, 0, b.length); value = bytestohexstring(b); } catch (exception e) { } finally { if(null != is) { try { is.close(); } catch (ioexception e) {} } } return value; } private static string bytestohexstring(byte[] src){ stringbuilder builder = new stringbuilder(); if (src == null || src.length <= 0) { return null; } string hv; for (int i = 0; i < src.length; i++) { hv = integer.tohexstring(src[i] & 0xff).touppercase(); if (hv.length() < 2) { builder.append(0); } builder.append(hv); } return builder.tostring(); } public static void main(string[] args) throws exception { final string filetype = getfiletype("d:/apache-tomcat-6.0.35.tar.gz"); system.out.println(filetype); } }
更多关于android相关内容感兴趣的读者可查看本站专题:《android开发入门与进阶教程》、《android多媒体操作技巧汇总(音频,视频,录音等)》、《android基本组件用法总结》、《android视图view技巧总结》、《android布局layout技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。