| commit | f2160038b0b61c65147c527547404f0b88b99698 | [log] [tgz] |
|---|---|---|
| author | Andrew Scull <[email protected]> | Wed Apr 19 23:04:31 2023 +0000 |
| committer | Automerger Merge Worker <[email protected]> | Wed Apr 19 23:04:31 2023 +0000 |
| tree | 77ec2740277e4361522175b4f04e0a1d118c0e74 | |
| parent | fe6f6f2a26d2687e914511f529132878c9bd9e3b [diff] | |
| parent | bce764290d158da1acace5f5be4dc5adf428cd3f [diff] |
Mark cbor-java as host supported am: ce296edb61 am: c7a74bb912 am: bce764290d Original change: https://android-review.googlesource.com/c/platform/external/cbor-java/+/2547916 Change-Id: I14a51df4bf0dfea66a69567f6d39ff4fbf357eaf Signed-off-by: Automerger Merge Worker <[email protected]>
A Java 7 implementation of RFC 7049: Concise Binary Object Representation (CBOR)
Add this to the dependencies section of your pom.xml file:
<dependency> <groupId>co.nstant.in</groupId> <artifactId>cbor</artifactId> <version>0.8</version> </dependency>
ByteArrayOutputStream baos = new ByteArrayOutputStream(); new CborEncoder(baos).encode(new CborBuilder() .add("text") // add string .add(1234) // add integer .add(new byte[] { 0x10 }) // add byte array .addArray() // add array .add(1) .add("text") .end() .build()); byte[] encodedBytes = baos.toByteArray();
ByteArrayInputStream bais = new ByteArrayInputStream(encodedBytes); List<DataItem> dataItems = new CborDecoder(bais).decode(); for(DataItem dataItem : dataItems) { // process data item }
ByteArrayInputStream bais = new ByteArrayInputStream(encodedBytes); new CborDecoder(bais).decode(new DataItemListener() { @Override public void onDataItem(DataItem dataItem) { // process data item } });
This project uses the C4 process for all code changes.
Copyright 2013-2017 Constantin Rack
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.