我正在使用 Linq to Xml 来操作 openXml 文档。更准确地说,我正在尝试读取和写入文档自定义属性。我目前在将前缀附加到 XElement 时遇到问题。我的代码看起来像:
Dim main as XNameSpace = "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"
Dim vt as XNameSpace = "http://schemas.openxmlformats.org/officeDocument2006/docPropsVTypes"
Dim props as XElement = cXDoc.Element(main + "Properties"
props.Add(New XElement(main + "property"), _
New XAttribute("fmtid", formatId), _
New XAttribute("pid", pid + 1), _
New XAttribute("name", "test"), _
New XElement(vt + "lpwstr", "test value")) _
)
添加之前 props 中包含的 Xml 是:
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" />
props.add method() 调用后的 Xml 是:
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="test">
<lpwstr xmlns="http://schemas.openxmlformats.org/officeDocument2006/docPropsVTypes">test value</lpwstr>
</property>
</Properties>
在我应该得到的属性元素中
<vt:lpwstr>test value</vt:lpwstr>
但就是不能让这发生。我也不想要这里元素的 xmlns 属性。我想我需要以某种方式将 vt XNameSpace 映射回根元素“属性”中的命名空间声明。有没有人有什么建议?
最佳答案
在 XElement 的某个地方,您需要定义前缀。以下是通过将 vt
xmlns 放在顶部,将其添加为 XAttribute 来实现的方法:New XAttribute(XNamespace.Xmlns + "vt", "http://schemas.openxmlformats.org/officeDocument2006/docPropsVTypes")
Dim main As XNamespace = "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"
Dim vt As XNamespace = "http://schemas.openxmlformats.org/officeDocument2006/docPropsVTypes"
Dim formatId = "{D5CDD505-2E9C-101B-9397-08002B2CF9AE}"
Dim pid = "2"
Dim props As New XElement(main + "Properties", New XAttribute(XNamespace.Xmlns + "vt", "http://schemas.openxmlformats.org/officeDocument2006/docPropsVTypes"))
props.Add(New XElement(main + "property"), _
New XAttribute("fmtid", formatId), _
New XAttribute("pid", pid + 1), _
New XAttribute("name", "test"), _
New XElement(vt + "lpwstr", "test value"))
XML 文字和全局命名空间可能更容易,但您仍然需要在父级别的 XML 中列出
vt
。这是一个 XML 文字示例(记住将两个 Imports 语句放在类/模块的顶部,高于其他所有内容):Imports <xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties">
Imports <xmlns:vt="http://schemas.openxmlformats.org/officeDocument2006/docPropsVTypes">
Sub GetXml()
Dim formatId = "{D5CDD505-2E9C-101B-9397-08002B2CF9AE}"
Dim pid = "2"
Dim props2 = <Properties>
<property fmtid=<%= formatId %> pid=<%= pid + 1 %> name="test">
<vt:lpwstr>test value</vt:lpwstr>
</property>
</Properties>
MsgBox(props2.ToString)
End Sub
关于xml - Linq to Xml 和命名空间前缀,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1748003/