What is the meaning of "vnd" in MIME types?
Reading up on content providers, I keep wondering why both the category and type of Android MIME types are prefixed with vnd. For example:
vnd.android.cursor.dir/vnd.<something>
vnd.android.cursor.item/vnd.<something>
Anyone know what this stands for and what the point is?
vnd
表示供应商特定的MIME类型,这意味着它们是由公司机构引入的MIME类型,而不是例如互联网联盟。
vnd = vendor.
See wikipedia
Types or subtypes that begin with x- are nonstandard (they are not registered with IANA). Subtypes that begin with vnd
are vendor-specific. Subtypes in the personal or vanity tree begin with prs
.
上一篇: 停止Excel自动将某些文本值转换为日期
下一篇: MIME类型中“vnd”的含义是什么?