I've a webservice running and Android devices reading data from it. The data I want to send, is slashed by the server, to avoid hacking issues. Once its escapped, it's being saved into the database.
But when I'm reading this data again, it's being returned like this: "Baba O\'Riley" instead of "Baba O'Riley".
I think its pretty "correct" and that what I've to do, is to clean the string I get of backslashes with a function like Stripslashes in PHP.
http://es1.php.net/manual/es/function.stripslashes.php
However, I couldn't find any function to do this in Java.
Any idea?