Excel and “unreadable content” when creating an Open XML spreadsheet with MemoryStream

后端 未结 3 2322
走了就别回头了
走了就别回头了 2021-02-19 23:01

When creating an Excel spreadsheet using the Open XML SDK v2.0, our Excel output initially worked successfully for a number of months. Recently Excel (all versions) began to com

3条回答
  •  半阙折子戏
    2021-02-19 23:17

    We chased this down for too many hours, picking up a couple of red herrings along the way, but in the end, resolved that the bad file was different in one respect. The file length was different. Before returning the MemoryStream and writing the byte[] to the HTTP response, ensure that you truncate the MemoryStream so that its capacity and length are the same, using a simple stream.Capacity = (int)stream.Length;.

    It appears that Excel now detects the extra content in the file as a security risk as 'unreadable content' and throws the annoying error, when in the past it would accept the risk.

    Note: answer taken from original poster, who previously had the answer in his question

提交回复
热议问题