nsIContentSniffer 编辑

netwerk/base/public/nsIContentSniffer.idlScriptable Content sniffer interface. Components implementing this interface can determine a MIME type from a chunk of bytes. Inherits from: nsISupports Last changed in Gecko 1.9 (Firefox 3) To implement this interface use net-content-sniffers category. See netwerk/build/nsNetCID.h about  NS_CONTENT_SNIFFER_CATEGORY.

Method overview

ACString getMIMETypeFromContent(in nsIRequest aRequest, [const,array,size_is(aLength)] in octet aData, in unsigned long aLength);

Methods

getMIMETypeFromContent()

Given a chunk of data, determines a MIME type. Information from the given request may be used in order to make a better decision.

Note: Implementations should consider the request read-only. Especially, they should not attempt to set the content type property that subclasses of nsIRequest might offer.
ACString getMIMETypeFromContent(
  in nsIRequest aRequest,
  [const,array,size_is(aLength)] in octet aData,
  in unsigned long aLength
);
Parameters
aRequest
The request where this data came from. May be null.
aData
Data to check.
aLength
Length of the data.
Return value

The content type.

Example

How to read content from aData.

    let charset = "ISO-8859-1";
    try {
      // this pref has been removed, see Bug 910192
      charset = Services.prefs.getComplexValue("intl.charset.default",
                                                Ci.nsIPrefLocalizedString).data;
    } catch (e) {
    }

    let conv = Cc["@mozilla.org/intl/scriptableunicodeconverter"]
               .createInstance(Ci.nsIScriptableUnicodeConverter);
    conv.charset = charset;
    try {
      let str = conv.convertFromByteArray(aData, aLength);
      if (str.substring(0, 5) == "%PDF-")
        return "application/pdf"; // we detected a pdf file
    } catch (e) {
      // try to get information from aRequest
    }

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:96 次

字数:3851

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文