how to get values from XML to int

shahjee99

New Member
I am new to Java and I have a question: Is there any possibility to store/set integer values in XML? I would like to set
  • X0 = 123
  • Y0 = 123
  • X1 = 123
  • Y1 = 130
from xml file below\[code\]<line> <point> <X>123</X> <Y>123</Y> </point> <point> <X>123</X> <Y>130</Y> </point> </line>\[/code\]
 
Back
Top