Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <response>
  2. <history>
  3. <observations>
  4. <observation>
  5. <date>
  6. <hour>02</hour>
  7. </date>
  8. <tempm>70</tempm>
  9. <hum>55</hum>
  10. <observation>
  11. <observation>
  12. <date>
  13. <hour>03</hour>
  14. </date>
  15. <tempm>78</tempm>
  16. <hum>90</hum>
  17. <observation>
  18. </observations>
  19. </history>
  20. </response>
  21.  
  22. SAXBuilder builder = new SAXBuilder();
  23. File xmlFile = new File("filePathHere");
  24.  
  25.  
  26. Document document = (Document) builder.build(xmlFile);
  27. Element rootNode = document.getRootElement();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement