Java raw 请求和获取

您所在的位置:网站首页 12的raw Java raw 请求和获取

Java raw 请求和获取

2024-07-10 10:12:43| 来源: 网络整理| 查看: 265

未经允许,禁止转载 2019-03-01 编写文档 2019-04-13 修改文档 警告 “程序员大本营” http://www.pianshen.com/article/6974255410/ 抄袭可耻

raw方式使用的是纯字符串的数据上传方式; 在postman中,raw格式如下:未经允许,禁止转载 未经允许,禁止转载

请求类型为raw,请求格式为json; java发送raw请求代码如下:

/** * java发送raw * @author zengwei * @email [email protected] * @version 2019年3月01日 下午4:02:02 */ public static JSONObject deviceRequest() { JSONObject result = null; try { String url = "url 地址"; JSONObject json = new JSONObject(); json.put("param", param 参数 ); @SuppressWarnings({"resource"}) HttpClient httpClient = new DefaultHttpClient(); HttpPost post = new HttpPost(url); StringEntity postingString = new StringEntity(json.toJSONString()); post.setEntity(postingString); post.setHeader("Content-type", "application/json"); HttpResponse response = httpClient.execute(post); String content = EntityUtils.toString(response.getEntity()); result = (JSONObject) JSONObject.parse(content); System.out.println(result); } catch (ParseException | IOException e) { e.printStackTrace(); } return result; }

java获取raw包请求需要从流中获取:

/** * java获取raw * @author zengwei * @email [email protected] * @version 2019年3月01日 下午4:10:04 */ public static String readRaw(InputStream inputStream) { String result = ""; try { ByteArrayOutputStream outSteam = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int len; while ((len = inputStream.read(buffer)) != -1) { outSteam.write(buffer, 0, len); } outSteam.close(); inputStream.close(); result = new String(outSteam.toByteArray(), "UTF-8"); } catch (IOException e) { e.printStackTrace(); } return result; }

传入参数 使用 request.getInputStream():

/** * 广告推广API * @author zengwei * @email [email protected] * @version 2019年3月01日 下午4:20:05 */ String result = FileUtils.readRaw(request.getInputStream());

可从流中获取raw包的参数

未经允许,禁止转载,抄袭可耻

分享≠给抄袭



【本文地址】

公司简介

联系我们

今日新闻


点击排行

实验室常用的仪器、试剂和
说到实验室常用到的东西,主要就分为仪器、试剂和耗
不用再找了,全球10大实验
01、赛默飞世尔科技(热电)Thermo Fisher Scientif
三代水柜的量产巅峰T-72坦
作者:寞寒最近,西边闹腾挺大,本来小寞以为忙完这
通风柜跟实验室通风系统有
说到通风柜跟实验室通风,不少人都纠结二者到底是不
集消毒杀菌、烘干收纳为一
厨房是家里细菌较多的地方,潮湿的环境、没有完全密
实验室设备之全钢实验台如
全钢实验台是实验室家具中较为重要的家具之一,很多

推荐新闻


图片新闻

实验室药品柜的特性有哪些
实验室药品柜是实验室家具的重要组成部分之一,主要
小学科学实验中有哪些教学
计算机 计算器 一般 打孔器 打气筒 仪器车 显微镜
实验室各种仪器原理动图讲
1.紫外分光光谱UV分析原理:吸收紫外光能量,引起分
高中化学常见仪器及实验装
1、可加热仪器:2、计量仪器:(1)仪器A的名称:量
微生物操作主要设备和器具
今天盘点一下微生物操作主要设备和器具,别嫌我啰嗦
浅谈通风柜使用基本常识
 众所周知,通风柜功能中最主要的就是排气功能。在

专题文章

    CopyRight 2018-2019 实验室设备网 版权所有 win10的实时保护怎么永久关闭