跳至主要內容

转义相关

hylexus约 145 字小于 1 分钟

转义相关

提示

每个硬件厂商实现808协议的时候对转义的处理可能略有不同。

如果内置的转义逻辑不符合要求,可以自己实现 BytesEncoder 接口实现转义逻辑。

之后覆盖内置的处理逻辑即可。

@Configuration
public class Jt808Config extends Jt808ServerConfigurationSupport {
    
    @Override
    public BytesEncoder supplyBytesEncoder() {
        return new BytesEncoder() {
    
            @Override
            public byte[] doEscapeForReceive(byte[] bytes, int start, int end) throws MsgEscapeException {
                return ...;
            }
    
            @Override
            public byte[] doEscapeForSend(byte[] bytes, int start, int end) throws MsgEscapeException {
                return ...;
            }
        };
    }
}

传送门

本小节示例可以在 samples/jt-808-server-sample-customizedopen in new window 找到相关代码。