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 彩灯控制电路,会的加我QQ1482956179
    • ¥200 相机拍直接转存到电脑上 立拍立穿无线局域网传
    • ¥15 (关键词-电路设计)
    • ¥15 如何解决MIPS计算是否溢出
    • ¥15 vue中我代理了iframe,iframe却走的是路由,没有显示该显示的网站,这个该如何处理
    • ¥15 操作系统相关算法中while();的含义
    • ¥15 CNVcaller安装后无法找到文件
    • ¥15 visual studio2022中文乱码无法解决
    • ¥15 关于华为5g模块mh5000-31接线问题
    • ¥15 keil L6007U报错