我使用FindMimeFromData
fromurlmon.dll
来嗅探上传文件的 MIME 类型。根据Internet Explorer 中的 MIME 类型检测,image/tiff
是公认的 MIME 类型之一。它在我的开发机器(Windows 7 64bit,IE9)上运行良好,但在测试环境(Windows Server 2003 R2 64bit,IE8)上不起作用 - 它返回application/octet-stream
而不是image/tiff
.
上面的文章描述了确定 MIME 类型的确切步骤,但由于image/tiff
它是 26 种可识别类型之一,它应该在第 2 步(嗅探实际数据)结束,以便文件扩展名和注册应用程序(以及其他注册表内容)应该没关系。
哦,顺便说一下,TIFF 文件实际上与测试服务器上的一个程序(Windows 图片和传真查看器)相关联。并不是说 Windows 注册表中没有对 TIFF 的任何引用。
任何想法为什么它不能按预期工作?
编辑: FindMimeFromData 是这样使用的:
public class MimeUtil
{
[DllImport("urlmon.dll", CharSet = CharSet.Unicode, ExactSpelling = true, SetLastError = false)]
private static extern int FindMimeFromData(
IntPtr pBC,
[MarshalAs(UnmanagedType.LPWStr)] string pwzUrl,
[MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.I1, SizeParamIndex = 3)] byte[] pBuffer,
int cbSize,
[MarshalAs(UnmanagedType.LPWStr)] string pwzMimeProposed,
int dwMimeFlags,
out IntPtr ppwzMimeOut,
int dwReserved);
public static string GetMimeFromData(byte[] data)
{
IntPtr mimetype = IntPtr.Zero;
try
{
const int flags = 0x20; // FMFD_RETURNUPDATEDIMGMIMES
int res = FindMimeFromData(IntPtr.Zero, null, data, data.Length, null, flags, out mimetype, 0);
switch (res)
{
case 0:
string mime = Marshal.PtrToStringUni(mimetype);
return mime;
// snip - error handling
// ...
default:
throw new Exception("Unexpected HRESULT " + res + " returned by FindMimeFromData (in urlmon.dll)");
}
}
finally
{
if (mimetype != IntPtr.Zero)
Marshal.FreeCoTaskMem(mimetype);
}
}
}
然后这样调用:
protected void uploader_FileUploaded(object sender, FileUploadedEventArgs e)
{
int bsize = Math.Min(e.File.ContentLength, 256);
byte[] buffer = new byte[bsize];
int nbytes = e.File.InputStream.Read(buffer, 0, bsize);
if (nbytes > 0)
string mime = MimeUtil.GetMimeFromData(buffer);
// ...
}