hello there i am trying to do a project for my university and i need to know how to write and read an xml file i tried to read other awnsers but i didnt get anything as iam beiginner in booth java and DOM .... the structure of needed xml is the following :
<?xml version="1.0"?>
<xml>
<cours lang="F" code="info404">
<Enseignant nom="A. Hellani"/>
<classe nom="INFO M1 F"/>
<seances>
<seance>
<jour>1</jour>
<salle>33</salle>
<temps>1</temps>
</seance>
<seance>
<jour>1</jour>
<salle>33</salle>
<temps>1</temps>
</seance>
</seances>
</cours>
<cours lang="F" code="math 200">
<Enseignant nom="N. Ajram"/>
<classe nom="MATH L2 F"/>
<seances>
<seance><jour>2</jour>
<salle>40</salle>
<temps>6</temps>
</seance>
<seance><jour>6</jour>
<salle>33</salle>
<temps>2</temps>
</seance>
</seances>
</cours>.
.
.
.
</xml>