↧
Answer by icza for How to deserialize a java map
You can't (easily) deserialize those maps in Go, because the serialized data contains Java-specific data, data required to instantiate and initialize the original Java class (java.util.TreeMap in this...
View ArticleHow to deserialize a java map
I am trying to de-serialize bytes into an object in Go, which was serialized into bytes in Java, in the following way://myMap is an instance of Java TreeMap<String, Object>ByteArrayOutputStream a...
View Article
More Pages to Explore .....