java 测试post请求 在body里面传递参数怎么设置,怎么接收

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 测试post请求 在body里面传递参数怎么设置,怎么接收相关的知识,希望对你有一定的参考价值。

package wzh.Http;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.io.PrintWriter;import java.net.URL;import java.net.URLConnection;import java.util.List;import java.util.Map;public class HttpRequest /** * 向指定URL发送GET方法的请求 * * @param url * 发送请求的URL * @param param * 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。 * @return URL 所代表远程资源的响应结果 */ 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", "*/*"); connection.setRequestProperty("connection", "Keep-Alive"); connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 建立实际的连接 connection.connect(); // 获取所有响应头字段 Map> map = connection.getHeaderFields(); // 遍历所有的响应头字段 for (String key : map.keySet()) System.out.println(key + "--->" + map.get(key)); // 定义 BufferedReader输入流来读取URL的响应 in = new BufferedReader(new InputStreamReader( connection.getInputStream())); String line; while ((line = in.readLine()) != null) result += line; catch (Exception e) System.out.println("发送GET请求出现异常!" + e); e.printStackTrace(); // 使用finally块来关闭输入流 finally try if (in != null) in.close(); catch (Exception e2) e2.printStackTrace(); return result; /** * 向指定 URL 发送POST方法的请求 * * @param url * 发送请求的 URL * @param param * 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。 * @return 所代表远程资源的响应结果 */ public static String sendPost(String url, String param) PrintWriter out = null; BufferedReader in = null; String result = ""; try URL realUrl = new URL(url); // 打开和URL之间的连接 URLConnection conn = realUrl.openConnection(); // 设置通用的请求属性 conn.setRequestProperty("accept", "*/*"); conn.setRequestProperty("connection", "Keep-Alive"); conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 发送POST请求必须设置如下两行 conn.setDoOutput(true); conn.setDoInput(true); // 获取URLConnection对象对应的输出流 out = new PrintWriter(conn.getOutputStream()); // 发送请求参数 out.print(param); // flush输出流的缓冲 out.flush(); // 定义BufferedReader输入流来读取URL的响应 in = new BufferedReader( new InputStreamReader(conn.getInputStream())); String line; while ((line = in.readLine()) != null) result += line; catch (Exception e) System.out.println("发送 POST 请求出现异常!"+e); e.printStackTrace(); //使用finally块来关闭输出流、输入流 finally try if(out!=null) out.close(); if(in!=null) in.close(); catch(IOException ex) ex.printStackTrace(); return result; //函数调用时填入URL和参数(参数非必须)就可以获取返回的数据,发送post请求调用示例String result=HttpRequest.sendPost("/telematics/v3/weather?location=%E5%8C%97%E4%BA%AC&output=json&ak=E4805d16520de693a3fe707cdc962045","") 参考技术A System.out.println(strURL);
System.out.println(params);
try
URL url = new URL(strURL);// 创建连接
HttpURLConnection connection = (HttpURLConnection)
url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setUseCaches(false);
connection.setInstanceFollowRedirects(true);
connection.setRequestMethod("POST");// 设置请求方式
connection.setRequestProperty("Accept","application/json");// 设置接收数据的格式
connection.setRequestProperty("Content-Type","application/json");// 设置发送数据的格式
connection.connect(); OutputStreamWriter out = new OutputStreamWriter( connection.getOutputStream(),"UTF-8");// utf-8编码
out.append(params); out.flush(); out.close(); // 读取响应
int length = (int) connection.getContentLength();// 获取长度
InputStream is = connection.getInputStream();
if (length != -1)
byte[] data = new byte[length];
byte[] temp = new byte[512];
int readLen = 0; int destPos = 0;
while ((readLen = is.read(temp)) > 0)
System.arraycopy(temp, 0, data, destPos, readLen);
destPos += readLen;

String result = new String(data, "UTF-8");
System.out.println(result);
return result;

catch (Exception e)
// TODO: handle exception
e.printStackTrace();

return "error";

参考技术B

    定义一个变量TestObject obj = new TestObject();

    然后把 obj 作为参数传递给一个方法。

    如果在这个方法中,只能改变obj指向的这个对象的内容,那就是“值传递”,传过去的值就是指向这个对象的指针。

    如果在这个方法中通过操作,使得返回后的obj指向另外一个对象(通过equal判断返回来的对象是否与原对象在内存中指向同一内存地址),那就是“引用传递”,传过去的是对这个指针变量的“引用”。

参考技术C 看看JSP和servlet吧
~
~
~

如何使用restclient来发送post请求参数

 运行 restclient ,点选Method选项卡的“POST”方法。然后选择Body选项卡,下下拉列表中选择”String body“的选项,配置上 application/x-www-form-urlencoded;charset=UTF-8 。再出现的body里面写入字符串,也就是你的请求条件,如:query=xpsF

  这样就可以传递post的参数了。

  java代码如下:springmvc写的
@RequestMapping(value = "/test", method = RequestMethod.GET,
RequestMethod.POST )
public void test(HttpServletResponse response, @RequestBody String message)
//注意这里的:@RequestBody String message
LOGGER.debug(String.format("receive message %s", message));
Map<String, String> map = Maps.newHashMap();

try
map.put("result", message);
Tools.printToJson(JSON.toJSONString(map), response);
catch (Exception e)
LOGGER.error(e.getMessage(), e);

参考技术A 运行 restclient ,点选Method选项卡的“POST”方法。然后选择Body选项卡,下下拉列表中选择”String body“的选项,配置上 application/x-www-form-urlencoded;charset=UTF-8 。再出现的body里面写入字符串,也就是你的请求条件,如:query=xpsF
这样就可以传递post的参数了。
java代码如下:springmvc写的
@RequestMapping(value = "/test", method = RequestMethod.GET,
RequestMethod.POST )
public void test(HttpServletResponse response, @RequestBody String message)
//注意这里的:@RequestBody String message
LOGGER.debug(String.format("receive message %s", message));
Map<String, String> map = Maps.newHashMap();

try
map.put("result", message);
Tools.printToJson(JSON.toJSONString(map), response);
catch (Exception e)
LOGGER.error(e.getMessage(), e);

以上是关于java 测试post请求 在body里面传递参数怎么设置,怎么接收的主要内容,如果未能解决你的问题,请参考以下文章

接口测试

如何获取PUT请求中放在body里面的参数

如何使用restclient来发送post请求参数

restclient火狐插件 以post方式请求,多个请求参数该怎么写

postman传递参数的问题

java面试题整理