如何在内存流上创建包
是否可以在内存流上创建 System.IO.Packaging.Package。如果可能的话,我想避免使用文件系统并在内存中完成所有操作。
但是,创建 Package 的唯一方法是调用接受流的 Package.Open。 但是,如果流为空,则会失败。
有什么线索吗?
Is it possible to create a System.IO.Packaging.Package on a memory stream. I'd like to avoid the file system and do everything in memory if possible.
However, the only way to create a Package is to call Package.Open which accepts a stream.
However, if the stream is empty, this fails.
Any clue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有效:
This works: