栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

JAVA发送http get/post请求,调用http接口、方法详解

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

JAVA发送http get/post请求,调用http接口、方法详解

三个例子 —JAVA发送http get/post请求,调用http接口、方法

例1:使用 HttpClient (commons-httpclient-3.0.jar
jar下载地址:http://xiazai.jb51.net/201904/yuanma/commons-httpclient-3.0.rar

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.methods.InputStreamRequestEntity;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.RequestEntity;

public class HttpTool {

 
 public static String sendPost(String params, String requestUrl,
   String authorization) throws IOException {

  byte[] requestBytes = params.getBytes("utf-8"); // 将参数转为二进制流
  HttpClient httpClient = new HttpClient();// 客户端实例化
  PostMethod postMethod = new PostMethod(requestUrl);
  //设置请求头Authorization
  postMethod.setRequestHeader("Authorization", "Basic " + authorization);
  // 设置请求头 Content-Type
  postMethod.setRequestHeader("Content-Type", "application/json");
  InputStream inputStream = new ByteArrayInputStream(requestBytes, 0,
    requestBytes.length);
  RequestEntity requestEntity = new InputStreamRequestEntity(inputStream,
    requestBytes.length, "application/json; charset=utf-8"); // 请求体
  postMethod.setRequestEntity(requestEntity);
  httpClient.executeMethod(postMethod);// 执行请求
  InputStream soapResponseStream = postMethod.getResponseBodyAsStream();// 获取返回的流
  byte[] datas = null;
  try {
   datas = readInputStream(soapResponseStream);// 从输入流中读取数据
  } catch (Exception e) {
   e.printStackTrace();
  }
  String result = new String(datas, "UTF-8");// 将二进制流转为String
  // 打印返回结果
  // System.out.println(result);

  return result;

 }

 
 public static byte[] readInputStream(InputStream inStream) throws Exception {
  ByteArrayOutputStream outStream = new ByteArrayOutputStream();
  byte[] buffer = new byte[1024];
  int len = 0;
  while ((len = inStream.read(buffer)) != -1) {
   outStream.write(buffer, 0, len);
  }
  byte[] data = outStream.toByteArray();
  outStream.close();
  inStream.close();
  return data;
 }
}

例2:

import java.io.BufferedReader; 
import java.io.IOException;
import java.io.InputStream; 
import java.io.InputStreamReader; 
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException; 
import java.net.HttpURLConnection; 
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.URL; 
import java.net.URLConnection;
import java.util.List;
import java.util.Map;


public class HttpRequestUtil {
 static boolean proxySet = false;
 static String proxyHost = "127.0.0.1";
 static int proxyPort = 8087;
  
 public static String urlEncode(String source,String encode) { 
  String result = source; 
  try { 
   result = java.net.URLEncoder.encode(source,encode); 
  } catch (UnsupportedEncodingException e) { 
   e.printStackTrace(); 
   return "0"; 
  } 
  return result; 
 }
 public static String urlEncodeGBK(String source) { 
  String result = source; 
  try { 
   result = java.net.URLEncoder.encode(source,"GBK"); 
  } catch (UnsupportedEncodingException e) { 
   e.printStackTrace(); 
   return "0"; 
  } 
  return result; 
 }
  
 public static String httpRequest(String req_url) {
  StringBuffer buffer = new StringBuffer(); 
  try { 
   URL url = new URL(req_url); 
   HttpURLConnection httpUrlConn = (HttpURLConnection) url.openConnection(); 

   httpUrlConn.setDoOutput(false); 
   httpUrlConn.setDoInput(true); 
   httpUrlConn.setUseCaches(false); 

   httpUrlConn.setRequestMethod("GET"); 
   httpUrlConn.connect(); 

   // 将返回的输入流转换成字符串 
   InputStream inputStream = httpUrlConn.getInputStream(); 
   InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8"); 
   BufferedReader bufferedReader = new BufferedReader(inputStreamReader); 

   String str = null; 
   while ((str = bufferedReader.readLine()) != null) { 
    buffer.append(str); 
   } 
   bufferedReader.close(); 
   inputStreamReader.close(); 
   // 释放资源 
   inputStream.close(); 
   inputStream = null; 
   httpUrlConn.disconnect(); 

  } catch (Exception e) { 
   System.out.println(e.getStackTrace()); 
  } 
  return buffer.toString(); 
 } 

  
 public static InputStream httpRequestIO(String requestUrl) { 
  InputStream inputStream = null; 
  try { 
   URL url = new URL(requestUrl); 
   HttpURLConnection httpUrlConn = (HttpURLConnection) url.openConnection(); 
   httpUrlConn.setDoInput(true); 
   httpUrlConn.setRequestMethod("GET"); 
   httpUrlConn.connect(); 
   // 获得返回的输入流 
   inputStream = httpUrlConn.getInputStream(); 
  } catch (Exception e) { 
   e.printStackTrace(); 
  } 
  return inputStream; 
 }


 
 public static String sendGet(String url, String param) {
  String result = "";
  BufferedReader in = null;
  try {
   String urlNameString = url + "?" + param;
   URL realUrl = new URL(urlNameString);
   // 打开和URL之间的连接
   URLConnection connection = realUrl.openConnection();
   // 设置通用的请求属性
   connection.setRequestProperty("accept", "*
 public static String sendPost(String url, String param,boolean isproxy) {
  OutputStreamWriter out = null;
  BufferedReader in = null;
  String result = "";
  try {
   URL realUrl = new URL(url);
   HttpURLConnection conn = null;
   if(isproxy){//使用代理模式
    @SuppressWarnings("static-access")
    Proxy proxy = new Proxy(Proxy.Type.DIRECT.HTTP, new InetSocketAddress(proxyHost, proxyPort));
    conn = (HttpURLConnection) realUrl.openConnection(proxy);
   }else{
    conn = (HttpURLConnection) realUrl.openConnection();
   }
   // 打开和URL之间的连接

   // 发送POST请求必须设置如下两行
   conn.setDoOutput(true);
   conn.setDoInput(true);
   conn.setRequestMethod("POST"); // POST方法


   // 设置通用的请求属性

   conn.setRequestProperty("accept", "*
 public static String doHttpPost(String xmlInfo, String URL) {
  System.out.println("发起的数据:" + xmlInfo);
  byte[] xmlData = xmlInfo.getBytes();
  InputStream instr = null;
  java.io.ByteArrayOutputStream out = null;
  try {
   URL url = new URL(URL);
   URLConnection urlCon = url.openConnection();
   urlCon.setDoOutput(true);
   urlCon.setDoInput(true);
   urlCon.setUseCaches(false);
   urlCon.setRequestProperty("content-Type", "application/json");
   urlCon.setRequestProperty("charset", "utf-8");
   urlCon.setRequestProperty("Content-length",
     String.valueOf(xmlData.length));
   System.out.println(String.valueOf(xmlData.length));
   DataOutputStream printout = new DataOutputStream(
     urlCon.getOutputStream());
   printout.write(xmlData);
   printout.flush();
   printout.close();
   instr = urlCon.getInputStream();
   byte[] bis = IOUtils.toByteArray(instr);
   String ResponseString = new String(bis, "UTF-8");
   if ((ResponseString == null) || ("".equals(ResponseString.trim()))) {
    System.out.println("返回空");
   }
   System.out.println("返回数据为:" + ResponseString);
   return ResponseString;

  } catch (Exception e) {
   e.printStackTrace();
   return "0";
  } finally {
   try {
    out.close();
    instr.close();

   } catch (Exception ex) {
    return "0";
   }
  }
 }

以上所述是小编给大家介绍的Java发送http get/post请求调用接口/方法详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对考高分网网站的支持!

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/138295.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号