使用httpclient进行远程调用,需要的maven pom:
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5</version>
</dependency>
代码如下:
import java.io.IOException;
import org.apache.h