如何以编程方式访问打开的 xml worddoc 文件的内置属性
我想访问打开的 xml word doc 文件的一些内置属性(如作者、上次修改日期等)。我想为此目的使用 open xml sdk2.0 。所以我想知道是否有任何类或任何方式我可以以编程方式访问这些内置属性。
i would like to access some built in properties(like author,last modified date,etc.) of an open xml word doc file. i would like to use open xml sdk2.0 for this purpose. so i wonder if there is any class or any way i could programmatically access these builtin properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以在此处找到以下方法的说明,但几乎您需要将想要从 core.xml 文件中获取的属性传递给此方法,它将返回值:
An explanation of the following method can be found here, but pretty much you need to pass in the properties that you want to get out of the core.xml file to this method and it will return the value:
您还可以使用打包 API:
这也适用于其他开放 XML 格式,例如 power point。
You can also use the packaging API:
That works also for other open XML formats like power point.
包.保存();
然后
封装.关闭;
我认为这是最好的方法。
package.Save();
Then
package.closed;
I think that Is the best way.