Setting mime type for excel document

后端 未结 7 1951
终归单人心
终归单人心 2020-11-22 06:34

MS Excel has the following observed MIME types:

  • application/vnd.ms-excel (official)
  • application/msexcel
  • appli
7条回答
  •  情歌与酒
    2020-11-22 07:03

    I was setting MIME type from .NET code as below -

    File(generatedFileName, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
    

    My application generates excel using OpenXML SDK. This MIME type worked -

    vnd.openxmlformats-officedocument.spreadsheetml.sheet
    

提交回复
热议问题