09/01/2009, 06:26
|
| | Fecha de Ingreso: septiembre-2008
Mensajes: 137
Antigüedad: 16 años, 3 meses Puntos: 0 | |
Respuesta: Instalar Jdom Hola de nuevo ya me funciona, y ya estuve probando, la verdad es que es muy intuitivo y manejable, pero me asalta la siguiente duda:
Como tengo que hacer para establecer esta estructura de padres e hijos
-<PRUEBA>
<FECHA> 2008-06-04 </FECHA>
<HORA> 12:43:52 </HORA>
-<PROPIETARIO>
<NUMERO>0001</NUMERO>
</PROPIETARIO>
-<MARCA>
-<MONITOR ID = "1">
<DESCRIPCION>PHILIPS</DESCRIPCION>
<COLOR>ROJO</COLOR>
</MONITOR>
</MARCA>
</PRUEBA>
hasta ahora e estado creando un nodo raiz llamado prueba y añadiendoles hijos,pero necesito hacer subgrupos con sus respectivos hijos como indico arriba
Este es el codigo que tengo ahora:
Document doc = new Document();
Element prueba = new Element("PRUEBA");
Element fechageneracion = new Element ("FECHA");
fechageneracion.setText("2008-06-04");
prueba.addContent(fechageneracion);
Element horageneracion = new Element ("HORA");
horageneracion.setText("12:43:52");
prueba.addContent(horageneracion);
// Todo documento tiene un nodo raíz
doc.setRootElement(prueba);
XMLOutputter outputter = new XMLOutputter(Format.getPrettyFormat());
FileWriter writer = new FileWriter(new File("foo2.xml"));
outputter.output(doc, writer);
Última edición por mariaanie; 12/01/2009 a las 02:46 |