java web 怎么识别文件的类型

java web 怎么识别文件的类型,第1张

java web识别文件类型是通过文件后缀识别的。

1、写一个识别文件做答陪类型的方法:

public String identifyFileTypeUsingFilesProbeContentType(final String fileName) {

String fileType = "纯蠢Undetermined"

final File file = new File(fileName)

try {

  fileType = Files.probeContentType(file.toPath())

} catch (IOException ioException) {

 out.println( "ERROR: Unable to determine file type for " + fileName + " due to exception " + ioException)

}

return fileType

}

2、最常见的文件类型举银:

启动tomcat。

web.xml是系统自动生成的,当你的web应用部署到想要的文码毕件tomcat上的时候,启动tomcat时它就开始读取了,而且这个路径是固迟祥芹宴虚定的。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8217028.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存