msgpack-java icon indicating copy to clipboard operation
msgpack-java copied to clipboard

MessagePack serializer implementation for Java / msgpack.org[Java]

Results 96 msgpack-java issues
Sort by recently updated
recently updated
newest added

MessagePack msgPack =new MessagePack() ,i tried in my demo,but this constructor is private in 0.8.4 version,

Hi, I've been trying to understand what is the most efficient (i.e. fast) way to deserialize msgpack bytes to a HashMap. That object will potentially be serialized from a dictionary...

```java public class MessagePackTest { @Setter @Getter @NoArgsConstructor @AllArgsConstructor @ToString(callSuper = true) public static class HistoryValueView { private Long time; private Integer qos; private Object value; private transient Long diff;...

Does cause 3 tests to fail: https://github.com/msgpack/msgpack-java/runs/1048509743

We are packing rest api response using python. contents are statuscode , actual response and response headers `` def pack(self, obj: ProxyResponse) -> bytes: return msgpack.packb( [obj.status_code, obj.content, obj.headers], use_bin_type=True...

Some `org.msgpack.value` classes (typically `org.msgpack.value.Value`) are used in method signatures of other software's API/SPI, unfortunately. https://dev.embulk.org/embulk-api/0.10.31/javadoc/org/embulk/spi/PageBuilder.html#setJson-org.embulk.spi.Column-org.msgpack.value.Value- Against such cases, I was wondering if those value classes are separated in a...

How can I convert `org.json.JSONObject` from android to message pack? My object is nested multiple times.

The `get` and `put` family of functions on `MessageBuffer` use unsafe memory accesses and are missing bounds checks. They can thus can read and write out of bounds. E.g. in...

Hi, I tried to use Msgpack on android but I can't make it work. I tried to unpack a Map into my app using the following piece of code :...