I have a string like the below :
<output transactionId="53264089"
paymentId="21575285"
amount="52.78"
dateTime="2013-12-13 15:04:42"
mode="TEST"
referenceNo="80001186"
transactionType="Authorized"
status="Processed"
isFlagged="NO" />
and want to extract the values :
transactionId;
paymentId;
amount;
dateTime;
mode;
referenceNo;
transactionType;
status;
isFlagged;
how do i do in java?
Actually it is a response from the server which is third party and really do not know how to get the values from the response.
thanks