Merge pull request #14521 from DevOrc:fixes-14348

* pr/14521:
  Support escaped characters in BasicJsonParser
This commit is contained in:
Stephane Nicoll 2018-09-20 10:24:42 +02:00
commit ccbbe0f0f3
2 changed files with 17 additions and 0 deletions

View File

@ -125,9 +125,16 @@ public class BasicJsonParser implements JsonParser {
int inObject = 0;
int inList = 0;
boolean inValue = false;
boolean inEscape = false;
StringBuilder build = new StringBuilder();
while (index < json.length()) {
char current = json.charAt(index);
if (inEscape) {
build.append(current);
index++;
inEscape = false;
continue;
}
if (current == '{') {
inObject++;
}
@ -147,6 +154,9 @@ public class BasicJsonParser implements JsonParser {
list.add(build.toString());
build.setLength(0);
}
else if (current == '\\') {
inEscape = true;
}
else {
build.append(current);
}

View File

@ -170,4 +170,11 @@ public abstract class AbstractJsonParserTests {
this.parser.parseList("\n\t{}");
}
@Test
public void escapeQuote() {
String input = "{\"foo\": \"\\\"bar\\\"\"}";
Map<String, Object> map = this.parser.parseMap(input);
assertThat(map.get("foo")).isEqualTo("\"bar\"");
}
}