String在json格式化后,去掉转义符在java中String在toJSonString后会连转义符\⼀起转,如下图:
使⽤如下⽅式也就是图中的第⼆种⽅式,就不会出现转移符。
import org.apachemons.lang.StringEscapeUtils;
public static void main(String[] args) {
CustomerDataDto customerDataDto = new CustomerDataDto();
浏览器json格式化
customerDataDto.setOther("{\"product_no\":\"JPRI1903041024500001\",\"merchant_no\":\"8808001000321872\"}");
System.out.println(StringEscapeUtils.JSONString(customerDataDto)));
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。