The structure of my app is:
Retrieve data using Volley Response, in java, the value of the response has an additional " " and "" in it.
Encrypted Message: gDELc873OU8RxIt9P80xVw==
Response Volley: "gDELc873OU8RxIt9P80xVw==
"
What i need is to get the exact encrypted value so that i can decrypt in java.
Any workaround might help? Thanks in advance.
I finally found the answer:
encryptedVolley = "gDELc873OU8RxIt9P80xVw== "
encryptedVolley.substring(1,str.length()-3);