CloseableHttpClientclient=HttpClients.createDefault();HttpPosthttpPost=newHttpPost("你要post的地址");httpPost.setHeader("Content-type","application/json");//header设置Entityentity=newStringEntity(json,"utf-8");httpPost.setEntity(entity);HttpResponseresponse=httpClient.execute(httpPost);