因为调用一个外部接口,会用到POST请求,而且还是Https的,但是由于之前学习的时候没有用到,所以研究了很久才弄懂了怎么去用JAVA实现Https发送post请求

使用的是HttpsURLConnection来操作的

 

代码如下

 


import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.URL;


import javax.net.ssl.HttpsURLConnection;


public class AutoFamilyAPITest {
public static void main(String[] args) throws Exception {
URL reqURL = new URL("xxxx"); //创建URL对象
HttpsURLConnection httpsConn = (HttpsURLConnection)reqURL.openConnection();

httpsConn.setDoOutput(true); 
httpsConn.setRequestMethod("POST");
OutputStreamWriter out = new OutputStreamWriter(httpsConn.getOutputStream()); 
out.write("xxxx"); 
out.flush(); 
out.close();

//取得该连接的输入流,以读取响应内容 
InputStreamReader insr = new InputStreamReader(httpsConn.getInputStream());


//读取服务器的响应内容并显示
int respInt = insr.read();
while(respInt != -1){
System.out.print((char)respInt);
respInt = insr.read();
}
}
}
 

如果觉得本文对您有所帮助,欢迎您扫码下图所示的支付宝和微信支付二维码对本文进行随意打赏。您的支持将鼓励我继续创作






 

Logo

助力广东及东莞地区开发者,代码托管、在线学习与竞赛、技术交流与分享、资源共享、职业发展,成为松山湖开发者首选的工作与学习平台

更多推荐