MIME 유형 조회
파일 확장자에对应的 MIME 유형을快速으로查询, 검색 및 분류筛选支持
문서(17)
application/pdf
application/msword
application/vnd.openxmlformats-officedocument.wordprocessingml.document
application/vnd.ms-excel
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
application/vnd.ms-powerpoint
application/vnd.openxmlformats-officedocument.presentationml.presentation
text/plain
application/rtf
application/vnd.oasis.opendocument.text
application/vnd.oasis.opendocument.spreadsheet
application/vnd.oasis.opendocument.presentation
text/csv
application/json
application/xml
text/html
text/html
이미지(15)
image/jpeg
image/jpeg
image/png
image/gif
image/webp
image/svg+xml
image/x-icon
image/bmp
image/tiff
image/tiff
image/avif
image/heic
image/heif
image/vnd.adobe.photoshop
image/raw
오디오(10)
audio/mpeg
audio/wav
audio/ogg
audio/mp4
audio/flac
audio/aac
audio/x-ms-wma
audio/aiff
audio/midi
audio/midi
비디오(12)
video/mp4
video/webm
video/x-msvideo
video/quicktime
video/x-ms-wmv
video/x-flv
video/x-matroska
video/mp4
video/mpeg
video/mpeg
video/3gpp
video/mp2t
압축 파일(9)
application/zip
application/vnd.rar
application/x-7z-compressed
application/x-tar
application/gzip
application/x-bzip2
application/x-xz
application/x-iso9660-image
application/x-apple-diskimage
코드(31)
application/javascript
application/javascript
application/typescript
application/typescript
application/javascript
text/css
text/x-scss
text/x-sass
text/x-less
text/x-python
text/x-java
text/x-c
text/x-c++
text/x-c
text/x-c++
text/x-csharp
text/x-go
text/x-rust
text/x-ruby
text/x-php
text/x-swift
text/x-kotlin
application/sql
application/x-sh
application/x-sh
application/x-yaml
application/x-yaml
application/toml
text/x-ini
text/x-vue
text/x-svelte
글꼴(5)
font/woff
font/woff2
font/ttf
font/otf
application/vnd.ms-fontobject
기타(16)
application/vnd.microsoft.portable-executable
application/x-msi
application/vnd.android.package-archive
application/octet-stream
application/vnd.debian.binary-package
application/x-rpm
application/java-archive
application/java-archive
application/x-shockwave-flash
application/x-chrome-extension
application/x-xpinstall
application/x-bittorrent
text/calendar
text/vcard
application/epub+zip
application/x-mobipocket-ebook
MIME 유형이란?
MIME 유형 (Multipurpose Internet Mail Extensions)은문서, 파일 또는字节流의性质과格式을表示하기 위한标准입니다.浏览器와服务器는MIME 유형을사용하여文件를如何处理할지确定합니다. 예를 들어浏览器가 image/jpeg 유형을收到하면图片를표시하고 application/pdf를收到하면PDF预览을열 수 있습니다.
사용 방법
검색框을使用하여特定확장자 또는 MIME 유형을快速으로查找할 수 있습니다. 분류 태그를 클릭하여特定类别的文件类型을筛选查看할 수 있습니다. 각卡片에는확장자와 MIME 유형을分别으로 복사할 수 있는两个按钮이 있습니다.
유형 분류
- 문서: PDF, Office 문서, 텍스트 파일等
- 이미지: JPEG, PNG, WebP, SVG等
- 오디오: MP3, WAV, FLAC, AAC等
- 비디오: MP4, WebM, AVI, MKV等
- 압축 파일: ZIP, RAR, 7z, TAR等
- 코드: JavaScript, Python, CSS等
- 글꼴: WOFF, TTF, OTF等
자주 묻는 질문 (FAQ)
Q: MIME 유형은무엇에使用되나요?
A: MIME 유형은浏览器에게收到한内容을如何处理할지告知합니다. 예를 들어服务器가 image/png를返回하면浏览器는图片를渲染하고 text/html를返回하면网页으로解析합니다.正确的 MIME 유형은内容이正确하게表示되고处理되도록保证합니다.
Q:文件의 MIME 유형을如何设置하나요?
A: Web服务器에서는配置文件或代码를 통해设置할 수 있습니다. 예를 들어 Nginx는mime.types配置文件을使用하고 Apache는 AddType指令을使用합니다.代码에서는 HTTP响应의 Content-Type头을통해 MIME 유형을设置할 수 있습니다.
Q: MIME 유형이正确하지 않으면什么问题이发生하나요?
A: MIME 유형이错误하게设置되면以下问题이발생할 수 있습니다: 浏览器가内容을正确하게渲染할 수 없음 (如图片가下载으로显示됨), 安全风险 (如HTML文件이文本로显示됨), 浏览器安全策略失效 (如脚本가执行되지 않음).
Q: application/octet-stream은什么인가요?
A: application/octet-stream은通用的二进制流类型으로未知的二进制数据를表示합니다. 服务器가文件的具体类型을알지못할时通常이类型을使用하며浏览器가收到后打开하지 않고下载을提示합니다.