【Content-Type】常见媒体类型及其对应的Content-Type(支持JSON/java代码快速拷贝)

常见媒体类型及其对应的Content-Type

对应关系表格

媒体类型Content-type
aacaudio/aac
abwapplication/x-abiword
arcapplication/x-freearc
avivideo/x-msvideo
azwapplication/vnd.amazon.ebook
binapplication/octet-stream
bmpimage/bmp
bzapplication/x-bzip
bz2application/x-bzip2
cshapplication/x-csh
csstext/css
csvtext/csv
docapplication/msword
docxapplication/vnd.openxmlformats-officedocument.wordprocessingml.document
eotapplication/vnd.ms-fontobject
epubapplication/epub+zip
gifimage/gif
htmtext/html
htmltext/html
icoimage/vnd.microsoft.icon
icstext/calendar
jarapplication/java-archive
jpegimage/jpeg
jpgimage/jpeg
jstext/javascript
jsonapplication/json
jsonldapplication/ld+json
midaudio/x-midi
midiaudio/x-midi
mjstext/javascript
mp3audio/mpeg
mpegvideo/mpeg
mpkgapplication/vnd.apple.installer+xml
odpapplication/vnd.oasis.opendocument.presentation
odsapplication/vnd.oasis.opendocument.spreadsheet
odtapplication/vnd.oasis.opendocument.text
ogaaudio/ogg
ogvvideo/ogg
ogxapplication/ogg
otffont/otf
pngimage/png
pdfapplication/pdf
pptapplication/vnd.ms-powerpoint
pptxapplication/vnd.openxmlformats-officedocument.presentationml.presentation
rarapplication/x-rar-compressed
rtfapplication/rtf
shapplication/x-sh
svgimage/svg+xml
swfapplication/x-shockwave-flash
tarapplication/x-tar
tifimage/tiff
tiffimage/tiff
ttffont/ttf
txttext/plain
vsdapplication/vnd.visio
wavaudio/wav
webaaudio/webm
webmvideo/webm
webpimage/webp
wofffont/woff
woff2font/woff2
xhtmlapplication/xhtml+xml
xlsapplication/vnd.ms-excel
xlsxapplication/vnd.openxmlformats-officedocument.spreadsheetml.sheet
xmltext/xml
xulapplication/vnd.mozilla.xul+xml
zipapplication/zip
3gpvideo/3gpp
3g2video/3gpp2
7zapplication/x-7z-compressed

快速拷贝

JSON文本

{
    "aac":"audio/aac",
    "abw":"application/x-abiword",
    "arc":"application/x-freearc",
    "avi":"video/x-msvideo",
    "azw":"application/vnd.amazon.ebook",
    "bin":"application/octet-stream",
    "bmp":"image/bmp",
    "bz":"application/x-bzip",
    "bz2":"application/x-bzip2",
    "csh":"application/x-csh",
    "css":"text/css",
    "csv":"text/csv",
    "doc":"application/msword",
    "docx":"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
    "eot":"application/vnd.ms-fontobject",
    "epub":"application/epub+zip",
    "gif":"image/gif",
    "htm":"text/html",
    "html":"text/html",
    "ico":"image/vnd.microsoft.icon",
    "ics":"text/calendar",
    "jar":"application/java-archive",
    "jpeg":"image/jpeg",
    "jpg":"image/jpeg",
    "js":"text/javascript",
    "json":"application/json",
    "jsonld":"application/ld+json",
    "mid":"audio/x-midi",
    "midi":"audio/x-midi",
    "mjs":"text/javascript",
    "mp3":"audio/mpeg",
    "mpeg":"video/mpeg",
    "mpkg":"application/vnd.apple.installer+xml",
    "odp":"application/vnd.oasis.opendocument.presentation",
    "ods":"application/vnd.oasis.opendocument.spreadsheet",
    "odt":"application/vnd.oasis.opendocument.text",
    "oga":"audio/ogg",
    "ogv":"video/ogg",
    "ogx":"application/ogg",
    "otf":"font/otf",
    "png":"image/png",
    "pdf":"application/pdf",
    "ppt":"application/vnd.ms-powerpoint",
    "pptx":"application/vnd.openxmlformats-officedocument.presentationml.presentation",
    "rar":"application/x-rar-compressed",
    "rtf":"application/rtf",
    "sh":"application/x-sh",
    "svg":"image/svg+xml",
    "swf":"application/x-shockwave-flash",
    "tar":"application/x-tar",
    "tif":"image/tiff",
    "tiff":"image/tiff",
    "ttf":"font/ttf",
    "txt":"text/plain",
    "vsd":"application/vnd.visio",
    "wav":"audio/wav",
    "weba":"audio/webm",
    "webm":"video/webm",
    "webp":"image/webp",
    "woff":"font/woff",
    "woff2":"font/woff2",
    "xhtml":"application/xhtml+xml",
    "xls":"application/vnd.ms-excel",
    "xlsx":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
    "xml":"text/xml",
    "xul":"application/vnd.mozilla.xul+xml",
    "zip":"application/zip",
    "3gp":"video/3gpp",
    "3g2":"video/3gpp2",
    "7z":"application/x-7z-compressed"
}

Java Map代码

put("aac" , "audio/aac");
put("abw" , "application/x-abiword");
put("arc" , "application/x-freearc");
put("avi" , "video/x-msvideo");
put("azw" , "application/vnd.amazon.ebook");
put("bin" , "application/octet-stream");
put("bmp" , "image/bmp");
put("bz" , "application/x-bzip");
put("bz2" , "application/x-bzip2");
put("csh" , "application/x-csh");
put("css" , "text/css");
put("csv" , "text/csv");
put("doc" , "application/msword");
put("docx" , "application/vnd.openxmlformats-officedocument.wordprocessingml.document");
put("eot" , "application/vnd.ms-fontobject");
put("epub" , "application/epub+zip");
put("gif" , "image/gif");
put("htm" , "text/html");
put("html" , "text/html");
put("ico" , "image/vnd.microsoft.icon");
put("ics" , "text/calendar");
put("jar" , "application/java-archive");
put("jpeg" , "image/jpeg");
put("jpg" , "image/jpeg");
put("js" , "text/javascript");
put("json" , "application/json");
put("jsonld" , "application/ld+json");
put("mid" , "audio/x-midi");
put("midi" , "audio/x-midi");
put("mjs" , "text/javascript");
put("mp3" , "audio/mpeg");
put("mpeg" , "video/mpeg");
put("mpkg" , "application/vnd.apple.installer+xml");
put("odp" , "application/vnd.oasis.opendocument.presentation");
put("ods" , "application/vnd.oasis.opendocument.spreadsheet");
put("odt" , "application/vnd.oasis.opendocument.text");
put("oga" , "audio/ogg");
put("ogv" , "video/ogg");
put("ogx" , "application/ogg");
put("otf" , "font/otf");
put("png" , "image/png");
put("pdf" , "application/pdf");
put("ppt" , "application/vnd.ms-powerpoint");
put("pptx" , "application/vnd.openxmlformats-officedocument.presentationml.presentation");
put("rar" , "application/x-rar-compressed");
put("rtf" , "application/rtf");
put("sh" , "application/x-sh");
put("svg" , "image/svg+xml");
put("swf" , "application/x-shockwave-flash");
put("tar" , "application/x-tar");
put("tif" , "image/tiff");
put("tiff" , "image/tiff");
put("ttf" , "font/ttf");
put("txt" , "text/plain");
put("vsd" , "application/vnd.visio");
put("wav" , "audio/wav");
put("weba" , "audio/webm");
put("webm" , "video/webm");
put("webp" , "image/webp");
put("woff" , "font/woff");
put("woff2" , "font/woff2");
put("xhtml" , "application/xhtml+xml");
put("xls" , "application/vnd.ms-excel");
put("xlsx" , "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
put("xml" , "text/xml");
put("xul" , "application/vnd.mozilla.xul+xml");
put("zip" , "application/zip");
put("3gp" , "video/3gpp");
put("3g2" , "video/3gpp2");
put("7z" , "application/x-7z-compressed");
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值