[Home] [By Thread] [By Date] [Recent Entries]

  • From: Tei <oscar.vives@g...>
  • To: xmldeveloper <xml-dev@l...>
  • Date: Wed, 20 Dec 2006 09:45:22 +0100

On 12/19/06, Seetha Rama Krishna <ram_kurra@y...> wrote:
> Hi folks,
>              I am trying to get the xml block from an xml file. Here is my
> xml file
> <Man>
>    <Name>   <Name>
>    <age> <age>
>    <education>
>           <yearOfpassing> 2006</yearOfpassing>
>           <course>           </course>
>           <percentage>          </percentage>
>    </education>
> <education>
>            <yearOfpassing>          </yearOfpassing>
>            <course>           </course>
>            <percentage>          </percentage>
>     </education>
> </Man>
>  1) I want to retriev the education block from this xml file. I am using
> DOM. Here is my code
>
>  NodeList educationNodeList =rule.getElementsByTagName("education");
>  for(int i =0;i<educationNodeList.getLength();i++)
>         {
>             Node educationNode =educationNodeList.item(i);
>             System.out.println(educationNode.toString())
>        }
>

No idea. I have no idea even of java. Anyway Java objects smell like
heavyweight, so I dont kind of like a object creating inside a loop.
Lets try this one code:

 NodeList educationNodeList =rule.getElementsByTagName("EDUCATION");
 Node educationNode;
  for(int i =0;i<educationNodeList.getLength();i++)
         {
             educationNode =educationNodeList.item(i);
             System.out.println(educationNode.toString())
        }

> any ideas are welcome

Is .toString right here?


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member