2021-10-14

2021/10/14 23:16:30

本文主要是介绍2021-10-14,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

MultipartFile的getContentType文件类型


最近搞得东西涉及到文件类型,分享一下

  switch (fileExt)
            {
                case ".doc":
                    return "application/msword";
                case "docx":
                    return "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
                case ".rtf":
                    return "application/rtf";
                case ".xls":
                    return "application/vnd.ms-excel";
                case ".xlsx":
                    return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
                case ".ppt":
                    return "application/vnd.ms-powerpoint";
                case ".pptx":
                    return "application/vnd.openxmlformats-officedocument.presentationml.presentation";
                case ".pdf":
                    return "application/pdf";
                case ".swf":
                    return "application/x-shockwave-flash";
                case ".rar":
                    return "application/octet-stream";
                case ".zip":
                    return "application/x-zip-compressed";
                case ".mp3":
                    return "audio/mpeg";
                case ".gif":
                    return "image/gif";
                case ".png":
                    return "image/png";
                case ".jpeg":
                    return "image/jpeg";
                case ".jpg":
                    return "image/jpeg";
                case ".jpe":
                    return "image/jpeg";
                case ".txt":
                    return "text/plain";
                case ".bmp":
                    return "image/jpeg";
                case ".exe":
                    return "application/octet-stream";

                default:
                    return "application/octet-stream";

            }


这篇关于2021-10-14的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程