here i want to get parse Map values in one array list or hash-map i dnt know which is the better way.
Here is my XMl file
I am using SAX parser to parse this thing
<Navigation useNavi="1" auto="1" diable="0" >
<Map MapName="paris" MapPath="\Storage Card\PA\xyz" LoadAtStartup="1" />
<Map MapName="swiss" MapPath="\Storage Card\SW\abc" LoadAtStartup="0" />
<Map MapName="delhi" MapPath="\Storage Card\DE\del" LoadAtStartup="1" />
</Navigation>
Here i want to pasre Map
tag , i cant do it easily and also get its attributes values but i want to know how can i manage this Map
element attributes values for a example MapName
is paris
and i want to use its respective values in future like LoadAtStartup
attribute value.
How can i manage these 3 maps values ?
Thanks
Sam