Java代码模拟json字符串的发送,接收以及响应

package com.wuhai.testdemo;

import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicHeader;
import org.apache.http.protocol.HTTP;
import org.json.JSONException;
import org.json.JSONObject;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;

@SpringBootTest
class TestdemoApplicationTests {



    @Test
    void contextLoads() throws JSONException {
        JSONObject jsobj1 = new JSONObject();

        JSONObject jsobj2 = new JSONObject();

        jsobj2.put("deviceID", "112");

        jsobj2.put("channel", "channel");

        jsobj2.put("state", "0");

        jsobj1.put("item", jsobj2);

        jsobj1.put("requestCommand", "control");

        post(jsobj1, "http://192.168.1.182:1234/authentication");


    }

    public String post(JSONObject json, String url) {

        String result = "";

        try {

            HttpClient client = new DefaultHttpClient();

            HttpPost post = new HttpPost(url);

            post.setHeader("Content-Type", "appliction/json");

            post.addHeader("Authorization", "Basic YWRtaW46");

            StringEntity s = new StringEntity(json.toString(), "utf-8");

            s.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "appliction/json"));

            post.setEntity(s);

            HttpResponse httpResponse = client.execute(post);

            InputStream in = httpResponse.getEntity().getContent();

            BufferedReader br = new BufferedReader(new InputStreamReader(in, "utf-8"));

            StringBuilder strber = new StringBuilder();

            String line = null;

            while ((line = br.readLine()) != null) {

                strber.append(line + "\n");

            }

            in.close();

            result = strber.toString();

            if (httpResponse.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {

                result = "服务器异常";

            }

        } catch (Exception e) {

            System.out.println("请求异常");

            throw new RuntimeException(e);

        }

        System.out.println("result==" + result);

        return result;

    }

}
package com.wuhai.testdemo.controller;

import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import java.util.Map;

/**
 * @author wuhai
 * @date 2021/10/20 17:25
 */
@RestController
public class JsonReceiveController {

    @Resource
    protected HttpServletRequest request;

    @RequestMapping(value="authentication",produces = MediaType.APPLICATION_JSON_VALUE,method = RequestMethod.POST)
    public Map<String,Object> getString() throws UnsupportedEncodingException, IOException {

        System.out.println("进入=====================");

        //后台接收

        InputStreamReader reader=new InputStreamReader(request.getInputStream(),"UTF-8");

        char [] buff=new char[1024];

        int length=0;

        while((length=reader.read(buff))!=-1){

            String x=new String(buff,0,length);

            System.out.println(x);

        }

        //响应

        Map<String,Object> jsonObject = new HashMap<String, Object>(); //创建Json对象

        jsonObject.put("username", "张三");     //设置Json对象的属性

        jsonObject.put("password", "123456");

        return jsonObject;

    }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值