super94 2019-04-23 13:43 采纳率: 0%
浏览 740

java socket怎么获取端口心跳包数据?

1、返回400

``` public static synchronized String tcpPost(String clientIp,String clientPort,String msg){
String rs = "";

    if(clientIp==null||"".equals(clientIp)||clientPort==null||"".equals(clientPort)){
        logger.error("Ip或端口不存在...");
        return null;
    }

    int clientPortInt = Integer.parseInt(clientPort);

    logger.info("clientIp:"+clientIp+" clientPort:"+clientPort);

    Socket s = null;
    OutputStream out = null;
    InputStream in = null;
    try {
        s = new Socket(clientIp, clientPortInt);
        s.setSendBufferSize(4096);
        s.setTcpNoDelay(true);
        s.setSoTimeout(60*1000);
        s.setKeepAlive(true);
        out = s.getOutputStream();
        in = s.getInputStream();

        //准备报文msg
        logger.info("准备发送报文:"+msg);

        out.write(msg.getBytes("GBK"));
        out.flush();

        byte[] rsByte = readStream(in);

        if(rsByte!=null){
            rs = new String(rsByte, "GBK");
        }


    } catch (Exception e) {
        logger.error("tcpPost发送请求异常:"+e.getMessage());
    }finally{
        logger.info("tcpPost(rs):"+rs);
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 请教一下各位,为什么我这个没有实现模拟点击
    • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
    • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
    • ¥20 有关区间dp的问题求解
    • ¥15 多电路系统共用电源的串扰问题
    • ¥15 slam rangenet++配置
    • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
    • ¥15 ubuntu子系统密码忘记
    • ¥15 保护模式-系统加载-段寄存器
    • ¥15 电脑桌面设定一个区域禁止鼠标操作