• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

DOMParser problem

 
Ranch Hand
Posts: 2908
1
Spring Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all

Actually i dont know where to put exactly a XML related question, so lastly i put it into this section

Her is my problem:
i want to put a XML files element name and its encloses text data as 'Key , Value ' pair in HashMap instance. I wrote a code but , not able to do exactly as above..

here is my try

list is my instance of HashMap class.


when i iterate thru map , i got following result :
[output]
=9679623159ec4a51a9
Key=s
ROOT=Request
[/output]

my xml file is :
[xml]
<Request>
<Key>9679623159ec4a51a9</Key>
</Request>
[/xml]

Thanks in advance
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


Actually i dont know where to put exactly a XML related question, so lastly i put it into this section


We have an XML forum, so I'll move this over there.
 
Sagar Rohankar
Ranch Hand
Posts: 2908
1
Spring Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all

i just solve the problem, it required a 15 minute break and sip of hot coffee !!

i just take temp string and stored a element value which i take from Node.ELEMENT case and in Node.TEXT , i put it with text value

 
That which doesn't kill us makes us stronger. I think a piece of pie wouldn't kill me. Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic