如何使用 Visual Studio 项目资源中的 Excel 文件
我将一个 excel 文件添加到我的项目资源中,我想打开它,但方法 woorkobook.open() 仅采用路径字符串作为参数:-(
从资源中打开和使用这些 excel 文件的正确方法是什么?
I add an excel file to my project resource, and I would like to open it, but method woorkobook.open() take only path string as parameter :-(
What is the proper way to open and use those excel files from resource?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Office 应用程序出现在 .NET Streams 时代之前。这些应用程序仅适用于物理文件。您必须将资源复制到物理文件或使用第三方组件。
Office applications are before the time of .NET Streams. The applications only work with physical files. You must copy the resource to a physical file or use a third-party component.
在VS中,如果将“复制到输出目录”属性设置为“始终复制”,则在添加到项目中的excel文件上,您可以直接使用文件名作为路径值。
in VS, if you set the property "Copy to Output Directory" to "Copy always", on the excel file you've added to your project, you can then directly use the name of your file as the value of the path.