You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to use Jackson's ObjectMapper in Java to read files with output from Dex and map the output into Java POJOs I made. But I realized this isn't JSON. It's reverse JSON, i.e. JSON with reversed double and single quotes. I did a find and replace, swapped the single quotes with an apostrophe (`), then swapped all double quotes with single quotes and finally swapped all apostrophes (former single quotes) with double quotes. And it worked. It has now been turned into valid JSON.
Please fix this, it shouldn't take you long now that it's been diagnosed and it's quite an annoying problem.
P.S. This used to be correct, why would you suddenly change it?
The text was updated successfully, but these errors were encountered:
SamuilDichev
changed the title
What format / language are the results in?
Results output is in reverse JSON, not real JSON.
Jul 6, 2016
Hi,
I was trying to use Jackson's ObjectMapper in Java to read files with output from Dex and map the output into Java POJOs I made. But I realized this isn't JSON. It's reverse JSON, i.e. JSON with reversed double and single quotes. I did a find and replace, swapped the single quotes with an apostrophe (`), then swapped all double quotes with single quotes and finally swapped all apostrophes (former single quotes) with double quotes. And it worked. It has now been turned into valid JSON.
Please fix this, it shouldn't take you long now that it's been diagnosed and it's quite an annoying problem.
P.S. This used to be correct, why would you suddenly change it?
The text was updated successfully, but these errors were encountered: