coap-codec

coap编解码器

Stars
11

coap-codec

coap编解码器

//encode
CoapPacket coapPacket = new CoapPacket();
coapPacket.setCode(Code.C205_CONTENT);
coapPacket.setPayload("{}");
coapPacket.headers().setContentFormat(MediaTypes.CT_TEXT_PLAIN);

coapPacket.writeTo(outputStream);


//decode
 CoapPacket packet = CoapPacket.deserialize(inputStream);
 
 packet.headers();
 
 packet.getPayloadString();


Package Rankings
Top 29.05% on Repo1.maven.org
Badges
Extracted from project README
Maven Central
Related Projects