-4

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>
4

1 回答 1

1

与其在这里复制一堆介绍性材料(或为您编写解决方案),我建议您阅读有关 Java 中的 XML 处理的教程。

一个好的起点是以下 Oracle 文档页面之一:


我应该指出,您问题中的术语是错误的。DOM 代表文档对象模型,是 XML 文档的常用内存表示的名称……在它被解析之后。所以“解析 XML DOM”没有意义。此外,解析“使用 Java ADT”的东西没有多大意义。如果您指的是抽象数据类型意义上的 ADT,那么您可能会说“使用 Java”。

于 2013-01-20T15:22:48.553 回答