Xml

15/07/2005 - 01:07 por Jorwin | Informe spam
Hola tengo un problema, me gustaria desarrollar un
aplicacion en la cual pudiera obtener todos los elementos
de un xml, ge visto que la funcion GetElementsByName,
pero no me sirve ya que aqui siempre se manda como
parametro el nombre del elemento lo que yo quiero es
obtener son los elementos del xml. algo asi como la
estructura del archivo, pues lo q quiero es poder
importar los datos del archivo xml, a una tabla x, pero
esa tabla sera exatamente igual al el original. espero me
hallan podido entender y me puedan ayudar
 

Leer las respuestas

#1 Kravek
15/07/2005 - 02:03 | Informe spam
Imports System
Imports System.IO
Imports System.Xml

public class Sample

public shared sub Main()

Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5' misc='sale
item'>" & _
"<title>The Handmaid's Tale</title>" & _
"<price>14.95</price>" & _
"</book>")

' Move to an element.
Dim myElement as XmlElement = doc.DocumentElement

' Create an attribute collection from the element.
Dim attrColl as XmlAttributeCollection = myElement.Attributes

' Show the collection by iterating over it.
Console.WriteLine("Display all the attributes in the collection...")
Dim i as integer
for i=0 to attrColl.Count-1
Console.Write("{0} = ", attrColl.ItemOf(i).Name)
Console.Write("{0}", attrColl.ItemOf(i).Value)
Console.WriteLine()
next

' Retrieve a single attribute from the collection; specifically, the
' attribute with the name "misc".
Dim attr as XmlAttribute = attrColl("misc")

' Retrieve the value from that attribute.
Dim miscValue as String = attr.InnerXml

Console.WriteLine("Display the attribute information.")
Console.WriteLine(miscValue)

end sub
end class


"Jorwin" escribió en el mensaje
news:03f301c588c8$c6023f80$
Hola tengo un problema, me gustaria desarrollar un
aplicacion en la cual pudiera obtener todos los elementos
de un xml, ge visto que la funcion GetElementsByName,
pero no me sirve ya que aqui siempre se manda como
parametro el nombre del elemento lo que yo quiero es
obtener son los elementos del xml. algo asi como la
estructura del archivo, pues lo q quiero es poder
importar los datos del archivo xml, a una tabla x, pero
esa tabla sera exatamente igual al el original. espero me
hallan podido entender y me puedan ayudar

Preguntas similares