如何使用vb.net读取xml元素的属性
答案:2 悬赏:0 手机版
解决时间 2021-01-25 02:30
- 提问者网友:不爱我么
- 2021-01-24 13:34
如何使用vb.net读取xml元素的属性
最佳答案
- 五星知识达人网友:躲不过心动
- 2021-01-24 14:49
先读取节点Match,然后读取节点内的各个属性值。 再进行节点中的子节点SetSetName的读取,读取方式也是直接读取各个属性值。
全部回答
- 1楼网友:轻熟杀无赦
- 2021-01-24 15:22
dim strconfig as string = apppath + "\system\config.xml"
dim reader as new xml.xmltextreader(strconfig)
dim userinfo as string
while (reader.read())
if (reader.isstartelement()) then
dim doc as new xml.xmldocument
doc.load(reader)
dim datasources as xml.xmlnode = doc.selectsinglenode("datasourceconfig").item("datasources")
dim xmlnode as xml.xmlnode = datasources.item("add")
userinfo = xmlnode.attributes ("connectionstring") '----这就是
end if
end while
reader.close()
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯