MIME-Typen Referenz

Schnelle Suche nach MIME-Typen für Dateiendungen mit Suche und Kategorie-Filter

Gesamt 115 个类型

Dokument(17)

.pdf

application/pdf

.doc

application/msword

.docx

application/vnd.openxmlformats-officedocument.wordprocessingml.document

.xls

application/vnd.ms-excel

.xlsx

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

.ppt

application/vnd.ms-powerpoint

.pptx

application/vnd.openxmlformats-officedocument.presentationml.presentation

.txt

text/plain

.rtf

application/rtf

.odt

application/vnd.oasis.opendocument.text

.ods

application/vnd.oasis.opendocument.spreadsheet

.odp

application/vnd.oasis.opendocument.presentation

.csv

text/csv

.json

application/json

.xml

application/xml

.html

text/html

.htm

text/html

Bild(15)

.jpg

image/jpeg

.jpeg

image/jpeg

.png

image/png

.gif

image/gif

.webp

image/webp

.svg

image/svg+xml

.ico

image/x-icon

.bmp

image/bmp

.tiff

image/tiff

.tif

image/tiff

.avif

image/avif

.heic

image/heic

.heif

image/heif

.psd

image/vnd.adobe.photoshop

.raw

image/raw

Audio(10)

.mp3

audio/mpeg

.wav

audio/wav

.ogg

audio/ogg

.m4a

audio/mp4

.flac

audio/flac

.aac

audio/aac

.wma

audio/x-ms-wma

.aiff

audio/aiff

.mid

audio/midi

.midi

audio/midi

Video(12)

.mp4

video/mp4

.webm

video/webm

.avi

video/x-msvideo

.mov

video/quicktime

.wmv

video/x-ms-wmv

.flv

video/x-flv

.mkv

video/x-matroska

.m4v

video/mp4

.mpeg

video/mpeg

.mpg

video/mpeg

.3gp

video/3gpp

.m2ts

video/mp2t

Archiv(9)

.zip

application/zip

.rar

application/vnd.rar

.7z

application/x-7z-compressed

.tar

application/x-tar

.gz

application/gzip

.bz2

application/x-bzip2

.xz

application/x-xz

.iso

application/x-iso9660-image

.dmg

application/x-apple-diskimage

Code(31)

.js

application/javascript

.mjs

application/javascript

.ts

application/typescript

.tsx

application/typescript

.jsx

application/javascript

.css

text/css

.scss

text/x-scss

.sass

text/x-sass

.less

text/x-less

.py

text/x-python

.java

text/x-java

.c

text/x-c

.cpp

text/x-c++

.h

text/x-c

.hpp

text/x-c++

.cs

text/x-csharp

.go

text/x-go

.rs

text/x-rust

.rb

text/x-ruby

.php

text/x-php

.swift

text/x-swift

.kt

text/x-kotlin

.sql

application/sql

.sh

application/x-sh

.bash

application/x-sh

.yaml

application/x-yaml

.yml

application/x-yaml

.toml

application/toml

.ini

text/x-ini

.vue

text/x-vue

.svelte

text/x-svelte

Schrift(5)

.woff

font/woff

.woff2

font/woff2

.ttf

font/ttf

.otf

font/otf

.eot

application/vnd.ms-fontobject

Andere(16)

.exe

application/vnd.microsoft.portable-executable

.msi

application/x-msi

.apk

application/vnd.android.package-archive

.ipa

application/octet-stream

.deb

application/vnd.debian.binary-package

.rpm

application/x-rpm

.jar

application/java-archive

.war

application/java-archive

.swf

application/x-shockwave-flash

.crx

application/x-chrome-extension

.xpi

application/x-xpinstall

.torrent

application/x-bittorrent

.ics

text/calendar

.vcf

text/vcard

.epub

application/epub+zip

.mobi

application/x-mobipocket-ebook

Was ist ein MIME-Typ?

MIME-Typen (Multipurpose Internet Mail Extensions) sind ein Standard zur Kennzeichnung der Art und Format von Dokumenten, Dateien oder Byte-Streams. Browser und Server verwenden MIME-Typen um zu bestimmen, wie Inhalte behandelt werden. Beispiel: image/jpeg signalisiert dem Browser ein Bild anzuzeigen, application/pdf könnte eine PDF-Vorschau öffnen.

Verwendung

Verwenden Sie das Suchfeld um schnell bestimmte Endungen oder MIME-Typen zu finden. Klicken Sie auf Kategorie-Tags um nach Dateityp zu filtern. Jede Karte hat zwei Buttons zum Kopieren der Endung oder des MIME-Typs.

Typ-Kategorien

  • Dokument: PDF, Office-Dateien, Textdateien, etc.
  • Bild: JPEG, PNG, WebP, SVG, etc.
  • Audio: MP3, WAV, FLAC, AAC, etc.
  • Video: MP4, WebM, AVI, MKV, etc.
  • Archiv: ZIP, RAR, 7z, TAR, etc.
  • Code: JavaScript, Python, CSS, etc.
  • Schriftart: WOFF, TTF, OTF, etc.

FAQ

Q: Was ist der Zweck von MIME-Typen?

A: MIME-Typen signalisieren Browsern, wie empfangene Inhalte behandelt werden. Beispiel: Server sendet image/png, Browser rendert Bild; text/html wird als Webseite analysiert. Korrekte MIME-Typen sorgen für richtige Darstellung und Verarbeitung.

Q: Wie setze ich den MIME-Typ einer Datei?

A: Auf Webservern können MIME-Typen durch Konfigurationsdateien oder Code gesetzt werden. Nginx verwendet mime.types Config, Apache AddType-Direktive. In Code können HTTP-Responses MIME-Typ via Content-Type Header setzen.

Q: Welche Probleme können falsche MIME-Typen verursachen?

A: Falsche MIME-Typen können verursachen: Browser kann Inhalte nicht richtig rendern (Bilder als Download), Sicherheitsrisiken (HTML als Text), Browser-Sicherheitspolitik fehlerhaft (Scripts nicht ausgeführt).

Q: Was ist application/octet-stream?

A: application/octet-stream ist ein generischer Binär-Stream-Typ für unbekannte Binärdaten. Wenn Server den spezifischen Dateityp nicht kennt, wird typischerweise dieser Typ verwendet. Browser bietet Download anstatt zu versuchen, die Datei zu öffnen.