当前位置:首页 > PHP教程 > php应用 > 列表

PHP CURL与java http使用方法详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-01 15:07:42 浏览: 评论:0 

这篇文章主要为大家详细介绍了PHP CURL与java http使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

php curl

有时候我们的项目需要与第三方平台进行交互。举个例子。

现在有A、B两个平台。 甲方在最初一段时间由A实现了一部分关键业务(如用户信息等)。 然后基于一部分原因,现在有一些业务需要B来实现,且实现程序调用了一些敏感的接口只能在B方服务器上跑,那么只能做两个平台之间的交互了。curl 就是这种问题的解决方案。

curl 是一个php扩展,你可以看作一个可以访问其他网站的精简版浏览器。

要使用curl 你得在php.ini 中开启相关的配置才能使用。

常用的平台之间交互的数据格式 有json、xml等比较流行的数据格式。

  1. <?php 
  2.  @param 
  3.  $url  接口地址 
  4.  $https 是否是一个Https 请求 
  5.  $post 是否是post 请求 
  6.  $post_data post 提交数据 数组格式 
  7. function curlHttp($url,$https = false,$post = false,$post_data = array()) 
  8.   $ch = curl_init();                            //初始化一个curl 
  9.   curl_setopt($ch, CURLOPT_URL,$url);     //设置接口地址 如:http://wwww.xxxx.co/api.php 
  10.   curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);//是否把CRUL获取的内容赋值到变量 
  11.   curl_setopt($ch,CURLOPT_HEADER,0);//是否需要响应头 
  12.   /*是否post提交数据*/ 
  13.   if($post){ 
  14.     curl_setopt($ch,CURLOPT_POST,1); 
  15.     if(!emptyempty($post_data)){ 
  16.       curl_setopt($ch,CURLOPT_POSTFIELDS,$post_data); 
  17.     } 
  18.   } 
  19.   /*是否需要安全证书*/ 
  20.   if($https
  21.   { 
  22.     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);  // https请求 不验证证书和hosts 
  23.     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 
  24.   } 
  25.   $output = curl_exec($ch); 
  26.   curl_close($ch); 
  27.   return $output
  28. ?>  

现在 接口地址 http://www.xxxxx.com/api/{sid} 这个接口地址通过get 方式可以返回一个user 的 json数据格式 ,那么我们怎么去获取第三方平台的数据

  1. <?php 
  2.     $sid = 1; 
  3.     $url = "http://www.xxxxx.com/api/{$sid}"
  4.     $data = curlHttp($url); 
  5.   $user = json_decode($data,true);  
  6. ?> 

其中$user就是获取user数组信息。

在这里 curl 模拟浏览器对该域名进行了get请求(当然,根据我们在参数中的设置,我们也可以去模拟post https 等请求),获取到了响应的数据。

java http 实现了类似php curl 的功能

java 是一门完全面向对象的语言,我觉得除了对象名够长不容易记忆外。其它的都很好,且它是先编译成字节码然后由java虚拟机去运行的,不像 php 每次都需要去编译一次以后采取运行。

java对php curl 的实现

文件 tool.HttpRequest

  1. package tool; 
  2.  
  3. import java.io.BufferedReader; 
  4. import java.io.IOException; 
  5. import java.io.InputStreamReader; 
  6. import java.io.PrintWriter; 
  7. import java.net.URL; 
  8. import java.net.URLConnection; 
  9. import java.util.List; 
  10. import java.util.Map; 
  11.  
  12. import java.net.URLEncoder; 
  13.  
  14. import Log.Log; 
  15.  
  16. public class HttpRequest  
  17.   /** 
  18.    * 向指定URL发送GET方法的请求 
  19.    *  
  20.    * @param url 
  21.    *      发送请求的URL 
  22.    * @param param 
  23.    *      请求参数,请求参数应该是 name1=value1&name2=value2 的形式。 
  24.    * @return String 所代表远程资源的响应结果 
  25.    */ 
  26.   public static String get(String url,String param) 
  27.   { 
  28.     String result = ""
  29.     BufferedReader in = null; 
  30.     try { 
  31.       String urlNameString = null; 
  32.  
  33.       if(param == null) 
  34.         urlNameString = url; 
  35.       else 
  36.         urlNameString = url + "?" + param; 
  37.  
  38.       //System.out.println("curl http url : " + urlNameString); 
  39.  
  40.       URL realUrl = new URL(urlNameString); 
  41.       // 打开和URL之间的连接 
  42.       URLConnection connection = realUrl.openConnection(); 
  43.       // 设置通用的请求属性 
  44.       connection.setRequestProperty("accept""*/*"); 
  45.       connection.setRequestProperty("connection","close"); 
  46.       connection.setRequestProperty("user-agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); 
  47.  
  48.       // 建立实际的连接 
  49.       connection.connect(); 
  50.  
  51.       /* 
  52.       // 获取所有响应头字段 
  53.       Map<String, List<String>> map = connection.getHeaderFields(); 
  54.       // 遍历所有的响应头字段 
  55.       for (String key : map.keySet()) 
  56.       { 
  57.         System.out.println(key + "--->" + map.get(key)); 
  58.       } 
  59.       */ 
  60.  
  61.       // 定义 BufferedReader输入流来读取URL的响应 
  62.       in = new BufferedReader(new InputStreamReader(connection.getInputStream())); 
  63.  
  64.       String line; 
  65.  
  66.       while ((line = in.readLine()) != null) 
  67.       { 
  68.         result += line; 
  69.       } 
  70.     } catch (Exception e) { 
  71.       System.out.println("发送GET请求出现异常!" + e); 
  72.       e.printStackTrace(); 
  73.     } 
  74.     // 使用finally块来关闭输入流 
  75.     finally { 
  76.       try { 
  77.         if (in != null) { 
  78.           in.close(); 
  79.         } 
  80.       } catch (Exception e2) { 
  81.         e2.printStackTrace(); 
  82.       } 
  83.     } 
  84.     return result.equals("") ? null : result; 
  85.   } 
  86.  
  87.   /** 
  88.    * 向指定 URL 发送POST方法的请求 
  89.    *  
  90.    * @param url 
  91.    *      发送请求的 URL 
  92.    * @param param 
  93.    *      请求参数,请求参数应该是 name1=value1&name2=value2 的形式。 
  94.    * @return String 所代表远程资源的响应结果 
  95.    */ 
  96.   public static String post(String url, String param) { 
  97.     PrintWriter out = null; 
  98.     BufferedReader in = null; 
  99.     String result = ""
  100.     try { 
  101.       URL realUrl = new URL(url); 
  102.       // 打开和URL之间的连接 
  103.       URLConnection conn = realUrl.openConnection(); 
  104.       // 设置通用的请求属性 
  105.       conn.setRequestProperty("accept""*/*"); 
  106.       conn.setRequestProperty("connection""Keep-Alive"); 
  107.       conn.setRequestProperty("user-agent"
  108.           "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); 
  109.       // 发送POST请求必须设置如下两行 
  110.       conn.setDoOutput(true); 
  111.       conn.setDoInput(true); 
  112.       // 获取URLConnection对象对应的输出流 
  113.       out = new PrintWriter(conn.getOutputStream()); 
  114.       // 发送请求参数 
  115.       out.print(param); 
  116.       // flush输出流的缓冲 
  117.       out.flush(); 
  118.       // 定义BufferedReader输入流来读取URL的响应 
  119.       in = new BufferedReader( 
  120.           new InputStreamReader(conn.getInputStream())); 
  121.       String line; 
  122.       while ((line = in.readLine()) != null) { 
  123.         result += line; 
  124.       } 
  125.     } catch (Exception e) { 
  126.       System.out.println("发送 POST 请求出现异常!"+e); 
  127.       e.printStackTrace(); 
  128.     } 
  129.     //使用finally块来关闭输出流、输入流 
  130.     finally{ 
  131.       try{ 
  132.         if(out!=null){ 
  133.           out.close(); 
  134.         } 
  135.         if(in!=null){ 
  136.           in.close(); 
  137.         } 
  138.       } 
  139.       catch(IOException ex){ 
  140.         ex.printStackTrace(); 
  141.       } 
  142.     } 
  143.     return result; 
  144.   }   

然后类似php的使用如下

web.app.controller.IndexController

  1. package web.app.controller; 
  2.  
  3. import tool.HttpRequest; 
  4.  
  5. import org.springframework.stereotype.Controller; 
  6. import org.springframework.web.bind.annotation.RequestMapping; 
  7. import org.springframework.web.bind.annotation.RequestMethod; 
  8. import org.springframework.web.bind.annotation.ResponseBody; 
  9.  
  10. import net.sf.json.JSONObject; 
  11.  
  12. @Controller 
  13. @RequestMapping("Index"
  14. public class IndexController 
  15.     @RequestMapping(value="index",method={RequestMethod.GET,RequestMethod.POST},produces="text/html;charset=utf-8"
  16.      @ResponseBody 
  17.   public String index() 
  18.   { 
  19.     String sid = "1"
  20.     String apiUrl = "http://www.xxxxx.com/api/" +sid; 
  21.         String data = HttpRequest.get(apiUrl,null);   //开始模拟浏览器请求 
  22.         JSONObject json = JSONObject.fromObject(data);  //解析返回的json数据结果 
  23.  
  24.   } 
  25. }

Tags: CURL java http

分享到: