I want to read xml node values and store in string array, how can I do this
Here is my xml file:
<SET_RULES>
<DOMAIN_RULES>
<RULE1>user1,user2,user3,user4</RULE1>
<RULE2>test2</RULE2>
<RULE3>test3</RULE3>
<RULE4>test4</RULE4>
</DOMAIN_RULES>
</SET_RULES>
now I want to read RULE1 node values and to store in string array. Please any one suggest me how to do this.
Thanks in advance.