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?
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?