如何使用 readXML 读取 xml 属性? dataset.readxml如何转换成表格?
我只是想知道 readXML 生成的表是什么样子,假设 xml 文件看起来像这样:
<item attr="some attribute">
<descirption>anything</description>
</item>
我可以像这样通过 Tables 集合直接引用表:
ds.ReadXml(xml);
... ds.Tables[i]
然后我可以使用 rows 集合访问行和列:
ds.Tables[3].Rows[i].ItemArray(j);
但是如何我可以访问任何 xml 节点的“属性”吗?
I just want to know how does the table resulting from readXML look like, say if the xml file looks like this:
<item attr="some attribute">
<descirption>anything</description>
</item>
I can reference tables directly by the Tables collection like this:
ds.ReadXml(xml);
... ds.Tables[i]
then I can access rows and columns using the rows collection:
ds.Tables[3].Rows[i].ItemArray(j);
but how can I access an "attribute" of any xml node?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它在行中。 我稍微修复了您的 xml :)
如果您没有架构,您可能必须检查该列以确定它是什么。
根据评论:您将看到我让它推断架构(XmlReadMode.Auto)。 它将根节点下的元素作为行,然后按顺序添加属性,然后添加元素中的值。 例如下面的 XML ...
我将得到两行(每个项目一行),其中包含 attr1、attr2 和描述的列。 您可以使用架构更改它解释 XML 的方式。
It's in the Row. I fixed your xml a bit :)
If you don't have a schema, you might have to check the column to determine what it is.
Per comment: You will see I am letting it infer the schema (XmlReadMode.Auto). It takes elements under the root node as Rows then adds the attributes in order and then the value in the element. So for example the following XML ...
I will get two rows (one for each item) with Columns for attr1, attr2 and description. You can change the way it interprets the XML using a schema.