Possible Duplicate:
What Java XML library do you recommend (to replace dom4j)?

I have been googeling for some days now and can't seem to find the right answer to my challenge.

This is what the items in my xml file looks like.

<Item ItemNo="319097" Name="PCB SIO_1" Value="" Config="1" /> 

I wuold like to take every singel part of this item line and break down into strings like this:

 String ItemNo = "319097";

So that I can create a string array that consists of the values in side the "" in the item node of the XML file.

Is this possible??

In advance thanks for helping me.

link|improve this question
You can use the JDOM library to parse the document. There are lots of code snippets for that in the internet. – juergen d Dec 16 '11 at 11:04
Possible duplication – Artem Dec 16 '11 at 11:04
1  
Presonally, I would use XSLT for that, not Java, but that is only my opinion. – Sorrow Dec 16 '11 at 11:04
jaxb.java.net/tutorial – BalusC Dec 16 '11 at 11:04
3  
"Googling for days"? Crazy. "Challenge"? I think not. – duffymo Dec 16 '11 at 11:05
show 3 more comments
feedback

closed as exact duplicate by Piskvor, Lukas Eder, Max, Tudor, Graviton Dec 16 '11 at 11:40

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

The cleaneast way would be to unmarshall the XML using Jaxb or something like Xstream : you create a Java object that represent your XML and then Jaxb will create an object and populate it with the XML values. An example for your XML would be :

public class Item {
   private String itemNo;
   private String name;
   private String value;
   private String config;
   ... GETTERS / SETTERS
}
link|improve this answer
Thank you. I will try this. – KarlNorway Dec 16 '11 at 11:29
feedback

You can use the DOM API (among others) to select all Item elements and then go though the attributes. A nice library for this is Dom4j. You can find some useful code snippets here: http://dom4j.sourceforge.net/dom4j-1.6.1/guide.html

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.