在内存流中创建读/写文档
我正在使用 npoi 创建 Excel 文档。使用 aspnet mvc 的 fileContentResult 输出的 xls 文档是只读的。将文件写入流时可以确保文件具有读/写功能。
I'm creating an excel doc using npoi. Using aspnet mvc's fileContentResult the output xls doc is readonly. When writing a file to stream is it possible to ensure the file has read/write capabilities.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据推测 fileContentResult 将文件存储在某个临时位置。如果它允许您写入,您的更改最终会丢失。
您可以将其复制到您选择的位置,然后在那里进行更改吗?
Presumably fileContentResult has the file stored at some temporary location. If it let you write to it, your changes would eventually get lost.
Can you just copy it to a location of your choice and then make changes to it there?