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

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

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

Related to #38 #40, we should add a documentation about how types are mapped.

Hello, I've been trying to use msgpack-java for a project of mine, and I keep having to look at the source code and trace through methods to try and understand...

version 0.7.0-p2 ``` scala import org.msgpack.value._ object Main { def mapValueEqualsTime(size: Int): Unit = { val keyValues: Array[Value] = (1 to size).flatMap{ key => Seq(ValueFactory.newString(key.toString), ValueFactory.nilValue()) }.toArray val map1, map2...

When I have a `Value` object, e.g. `IntegerValue`, how should I get the underlying int out of it? ``` IntegerValue v = ...; v.asInt(); // this would look be be...

I was previously using 0.6.8 and it was lovely and simple: create a packer, "write" primitives to it, create an unpacker, "read" primitives from it. Now I can't for the...

When trying to extract floating point numbers from values, I get an MessageTypeCastException. This because the ImmutableDoubleValueImpl as no as\* methods, which makes it hard to get the values out....

value

The Java programming language lacks support for unsigned numbers. However, it is often necessary to interoperate with systems that do support unsigned numbers. In these cases, it would be useful...

```java public static void main(String[] args) throws Exception { User u1 = new User("张三", 20); u1.addAddress(new Address("南京市", "210010")); u1.addAddress(new Address("苏州市", "310012")); u1.addAddress(new Address("宿迁市", "223800")); for (int i = 1; i...

Updates * [org.wvlet.airframe:airframe-json](https://github.com/wvlet/airframe) * [org.wvlet.airframe:airspec](https://github.com/wvlet/airframe) from 22.9.0 to 22.9.2. [GitHub Release Notes](https://github.com/wvlet/airframe/releases/tag/v22.9.2) - [Version Diff](https://github.com/wvlet/airframe/compare/v22.9.0...v22.9.2) I'll automatically update this PR to resolve conflicts as long as you don't change it...