TLV (tag-length-value) communication protocol implementation.
- Java version 1.8 or higher
- maven 3.x or gradle 4.x
In order to build project with maven you should check out build-project-with-maven branch.
git checkout build-project-with-mavenrun the following command in order to build project:
mvn packageIn order to build project with gradle you should check out master branch.
git checkout masterif you have gradle installed in your local machine run the following command:
gradle buildif you don't have gradle installed in your local machine, you can use gradle wrapper to build project.
./gradlew buildTLVAbstractData numericTypeValue = new NumericTypeValue("key", 1);
TLVAbstractData stringTypeValue = new StringTypeValue("key", "value");
List<TLVAbstractData> input = Arrays.asList(numericTypeValue, stringTypeValue);
byte[] output = new TLVParserImpl().encode(input);byte [] stringTypeInput = new byte[]{5, 4, 77, 84, 73, 68, 2, 0, -48, 16};
byte [] numericTypeInput = new byte[]{1, 4, 77, 84, 73, 68, 1, 0, 1};
List<StringTypeValue> output = new TLVParserImpl().decode(stringTypeInput);
List<NumericTypeValue> output = new TLVParserImpl().decode(numericTypeInput);You can see various encoding/decoding examples in Groovy test cases.