This is followup of a previous question (Android: Json string with spaces gives "Unterminated object at" exception)
When I get a string from a resource file it removes the " unless it is escaped (\") is there a way around this?
For example:
Java:
String jString = getResources().getString(R.string.event);
Json:
<resources>
<string name="event">
{"Array":[{"Name":"One two three"},{"Name":"Two"},{"Name":"Three"}]}
</string>
</resources>
jString has a value of {Array:[{Name:One two three},{Name:Two},{Name:Three}]} and I want it to have the following value {"Array":[{"Name":"One two three"},{"Name":"Two"},{"Name":"Three"}]}.