this is my code:
String comment = newComment.getText().toString();
...
fields.put("push[array][]", comment);
now, it's work well , but if the string "comment" contain for example: ' , ' (comma) - ("dsa,dsa").
on the server it's become two variables: [dsa , dsa].
another example: if the string "comment" contain: ' " ' (qoute) - ("dsa "dsa" dsa").
on the server it's : [dsa \dsa\ dsa].
how to fix it?