文章23 | 阅读 30917 | 点赞0
此博文的依据:hutool-5.6.5版本源码
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId>
<version>5.6.5</version>
</dependency>
方法 | 描述 |
---|---|
cn.hutool.core.io.FileTypeUtil.putFileType(java.lang.String, java.lang.String) | 增加文件类型映射<br> 如果已经存在将覆盖之前的映射 |
cn.hutool.core.io.FileTypeUtil.removeFileType(java.lang.String) | 移除文件类型映射 |
cn.hutool.core.io.FileTypeUtil.getType(java.lang.String) | 根据文件流的头部信息获得文件类型 |
cn.hutool.core.io.FileTypeUtil.getType(java.io.InputStream) | 根据文件流的头部信息获得文件类型 |
cn.hutool.core.io.FileTypeUtil.getType(java.io.InputStream, java.lang.String) | 根据文件流的头部信息获得文件类型 |
1、无法识别类型默认按照扩展名识别 2、xls、doc、msi头信息无法区分,按照扩展名区分 3、zip可能为docx、xlsx、pptx、jar、war、ofd头信息无法区分,按照扩展名区分
|
| cn.hutool.core.io.FileTypeUtil.getType(java.io.File) | 根据文件流的头部信息获得文件类型
1、无法识别类型默认按照扩展名识别 2、xls、doc、msi头信息无法区分,按照扩展名区分 3、zip可能为docx、xlsx、pptx、jar、war头信息无法区分,按照扩展名区分
|
| cn.hutool.core.io.FileTypeUtil.getTypeByPath(java.lang.String) | 通过路径获得文件类型 |
增加文件类型映射<br>
如果已经存在将覆盖之前的映射
参数名 | 描述 |
---|---|
String fileStreamHexHead | fileStreamHexHead 文件流头部Hex信息 |
String extName | extName 文件扩展名 |
之前已经存在的文件扩展名
File file = FileUtil.file("hutool.jpg");
String type = FileTypeUtil.getType(file);
System.out.println(type);
Assert.assertEquals("jpg", type);
FileTypeUtil.putFileType("ffd8ffe000104a464946", "new_jpg");
String newType = FileTypeUtil.getType(file);
System.out.println(newType);
Assert.assertEquals("new_jpg", newType);
链接:待补充
移除文件类型映射
参数名 | 描述 |
---|---|
String fileStreamHexHead | fileStreamHexHead 文件流头部Hex信息 |
移除的文件扩展名
File file = FileUtil.file("hutool.jpg");
String type = FileTypeUtil.getType(file);
System.out.println(type);
Assert.assertEquals("jpg", type);
FileTypeUtil.putFileType("ffd8ffe000104a464946", "new_jpg");
String newType = FileTypeUtil.getType(file);
System.out.println(newType);
Assert.assertEquals("new_jpg", newType);
String newExtName = FileTypeUtil.removeFileType("ffd8ffe000104a464946");
System.out.println(newExtName);
newType = FileTypeUtil.getType(file);
System.out.println(newType);
Assert.assertEquals("jpg", newType);
链接:待补充
根据文件流的头部信息获得文件类型
参数名 | 描述 |
---|---|
String fileStreamHexHead | fileStreamHexHead 文件流头部16进制字符串 |
文件类型,未找到为{@code null}
String newType = FileTypeUtil.getType("ffd8ffe000104a464946");
System.out.println(newType);
newType = FileTypeUtil.getType("afd8ffe000104a464946");
System.out.println(newType);
链接:待补充
根据文件流的头部信息获得文件类型
参数名 | 描述 |
---|---|
InputStream in | in {@link InputStream} |
类型,文件的扩展名,未找到为{@code null}
File src =FileUtil.file("hutool.jpg");
InputStream input = null;
try {
//创建流
input = new FileInputStream(src);
String newType = FileTypeUtil.getType(input);
System.out.println(newType);
}catch (IOException e){
//抛出一个运行时异常(直接停止掉程序)
throw new RuntimeException("运行时异常",e);
}finally {
IoUtil.close(input);
}
链接:待补充
根据文件流的头部信息获得文件类型
1、无法识别类型默认按照扩展名识别
2、xls、doc、msi头信息无法区分,按照扩展名区分
3、zip可能为docx、xlsx、pptx、jar、war、ofd头信息无法区分,按照扩展名区分
参数名 | 描述 |
---|---|
InputStream in | in {@link InputStream} |
String filename | filename 文件名 |
类型,文件的扩展名,未找到为{@code null}
File src =FileUtil.file("hutool.jpg");
InputStream input = null;
try {
//创建流
input = new FileInputStream(src);
String newType = FileTypeUtil.getType(input,"hutool.jpg");
System.out.println(newType);
}catch (IOException e){
//抛出一个运行时异常(直接停止掉程序)
throw new RuntimeException("运行时异常",e);
}finally {
IoUtil.close(input);
}
链接:待补充
根据文件流的头部信息获得文件类型
1、无法识别类型默认按照扩展名识别
2、xls、doc、msi头信息无法区分,按照扩展名区分
3、zip可能为docx、xlsx、pptx、jar、war头信息无法区分,按照扩展名区分
参数名 | 描述 |
---|---|
File file | file 文件 {@link File} |
类型,文件的扩展名,未找到为{@code null}
File src =FileUtil.file("hutool.jpg");
String newType = FileTypeUtil.getType(src);
System.out.println(newType);
链接:待补充
通过路径获得文件类型
参数名 | 描述 |
---|---|
String path | path 路径,绝对路径或相对ClassPath的路径 |
类型
String newType = FileTypeUtil.getTypeByPath("C:\\Users\\Administrator\\Desktop\\xuzhu\\hutool.jpg");
System.out.println(newType);
newType = FileTypeUtil.getTypeByPath("C:\\Users\\Administrator\\Desktop\\xuzhu\\copyTest1.txt");
System.out.println(newType);
链接:待补充
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://xiaoxuzhu.blog.csdn.net/article/details/120925048
内容来源于网络,如有侵权,请联系作者删除!