请求的代码
需要获取:
- IP地址
- 方法名
- 参数格式和名称
@RequestMapping("/test")
public void returnPollutionData() {
RestTemplate restTemplate = new RestTemplate();
MultiValueMap<String, String> map = new LinkedMultiValueMap<>();
//第一个参数:input为接收方参数的名字
//第二个参数:字符串数据
map.add("input", "0,0,1,1,2,2");
//第一个参数:请求的ip和方法名
//传输的数据
//接收返回值,string格式
String eeg_result = restTemplate.postForObject("https://7809sk6421.zicp.fun/filt", map, String.class);
System.out.println(eeg_result);
}