我正在从api获取json数据。通过浏览器或邮递员传递时,该api工作正常,但响应为空。由于json非常复杂,因此我将其字符串化。我的代码如下:
String uri="api url";
RestTemplate restTemplate1 = new RestTemplate();
String result = restTemplate1.getForObject(uri, String.class);
System.out.println(result);//result is null
String jsonFormattedString = result.replaceAll("\\\\", "");//this throws null pointer exception