如何在解析Json对象时告诉Jackson ObjectMapper'NOT escape'?换句话说,按原样返回String。例如,我的JSON是这样的:
{"field_1":"xyz","field_2":"ABWKJ\/m3ERpLr"}
在运行ObjectMapper之后,field2值为:“ABWKJ / m3ERpLr”,但我想要“ABWKJ \ / m3ERpLr”,因为我需要解密它&解密失败,因为'\'反斜杠消失了。
我试过以下:
MyClass jsonMessage = mapper.readValue(input, MyClass);
以及:
MyClass jsonMessage = mapper.readerFor(MyClass).readValue(input.getBytes());
但是两个版本都以某种方式改变了我的String。我希望它回归'原样'。我应该使用不同的课吗?
答案 0 :(得分:3)
我知道有点晚了,但我遇到了类似的问题。
我找到的解决方案是使用JsonRawValue打印字段原始值。
public class MyClass{
private String myField1;
private String myField2;
@JsonRawValue
public String getMyField1() {
return myField1;
}
@JsonRawValue
public String getMyField2() {
return myField2;
}
}
请注意,出于某种原因,如果将一个属性设置为JsonRawValue,则还需要为其他属性添加注释。
我不能100%确定这是否是问题的最佳解决方案,但它确实有效,如果您找到更好的解决方案,请告诉我。
答案 1 :(得分:1)
@DilTeam,
@JsonRawValue似乎有时候不起作用,我建议拿字符串并检查令牌。我有同样的问题,如下所用它对我有用。
String responseClone = finalResponse; // finalResponse =Json Response string
String pinValue = null;
if(null != responseClone){
responseClone = responseClone.replace("{", "");
responseClone = responseClone.replace("}", "");
responseClone = responseClone.replace("\"", "");
String[] strNodeSplit = responseClone.split(",");
LOG.debug("Splited response");
for (String stringNode : strNodeSplit) {
int j =0 ;
String[] strValueSplit = stringNode.split(":");
for (String strValue : strValueSplit) {
LOG.debug(j +" Value :" +" "+strValue);
if(strValue.equalsIgnoreCase("PIN")){
pinValue = strValueSplit[++j];
LOG.debug("Pin equals value : "+pinValue);
break;
}
j++;
}
}
}