PHP CURL与java http使用方法详解

时间:2018-01-30

web.app.controller.IndexController

package web.app.controller;

import tool.HttpRequest;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import net.sf.json.JSONObject;

@Controller
@RequestMapping("Index")
public class IndexController
{
    @RequestMapping(value="index",method={RequestMethod.GET,RequestMethod.POST},produces="text/html;charset=utf-8")
     @ResponseBody
  public String index()
  {
    String sid = "1";
    String apiUrl = "http://www.xxxxx.com/api/" +sid;
        String data = HttpRequest.get(apiUrl,null);   //开始模拟浏览器请求
        JSONObject json = JSONObject.fromObject(data);  //解析返回的json数据结果

  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

您可能感兴趣的文章:

  • 在PHP中使用curl_init函数的说明
  • 开启CURL扩展,让服务器支持PHP curl函数(远程采集)
  • PHP下使用CURL方式POST数据至API接口的代码
  • PHP CURL CURLOPT参数说明(curl_setopt)
  • java使用httpclient模拟post请求和get请求示例
  • PHP中CURL的CURLOPT_POSTFIELDS参数使用细节
  • PHP扩展CURL的用法详解
  • php之curl实现http与https请求的方法
  • php之curl设置超时实例
  • 谈谈Java利用原始HttpURLConnection发送POST数据
  • 共2页:
  • 上一页
  • 2/2下一篇
    上一篇:PHP微信开发之微信录音临时转永久存储 下一篇:php实现mysql连接池效果实现代码

    相关文章

    最新文章