Home > Backend Development > PHP Tutorial > 大哥们再帮忙看看这个 java 2 php.

大哥们再帮忙看看这个 java 2 php.

WBOY
Release: 2016-06-06 20:49:27
Original
1021 people have browsed it

它们说的头部, 和用curl的header一个样吗?

<code class="lang-java">  ...
  URL httpUrl = new URL(billing_url);
  HttpURLConnection http = (HttpURLConnection)httpUrl.openConnection();
  http.setRequestProperty("opcode", String.valueOf(opcode));    //头部
  http.setRequestProperty("appkey",appkey);             //头部
  http.setRequestProperty("sign", sign);            //头部
  http.setRequestProperty("tag", String.valueOf(tag));      //头部
  http.setRequestProperty("channelId",String.valueOf(channelId)); //头部
  http.setConnectTimeout(3000);
  http.setRequestMethod("POST"); //post方式
  http.setDoInput(true);
  http.setDoOutput(true);
  PrintWriter out = new PrintWriter(http.getOutputStream());
  out.print("data="+data); //注意data传递方式
  out.flush();
  ...
</code>
Copy after login
Copy after login

这个问题已被关闭,原因:

回复内容:

它们说的头部, 和用curl的header一个样吗?

<code class="lang-java">  ...
  URL httpUrl = new URL(billing_url);
  HttpURLConnection http = (HttpURLConnection)httpUrl.openConnection();
  http.setRequestProperty("opcode", String.valueOf(opcode));    //头部
  http.setRequestProperty("appkey",appkey);             //头部
  http.setRequestProperty("sign", sign);            //头部
  http.setRequestProperty("tag", String.valueOf(tag));      //头部
  http.setRequestProperty("channelId",String.valueOf(channelId)); //头部
  http.setConnectTimeout(3000);
  http.setRequestMethod("POST"); //post方式
  http.setDoInput(true);
  http.setDoOutput(true);
  PrintWriter out = new PrintWriter(http.getOutputStream());
  out.print("data="+data); //注意data传递方式
  out.flush();
  ...
</code>
Copy after login
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template