Is there any library to deserialize with python which is serialized with java

前端 未结 7 1391
野性不改
野性不改 2021-01-04 09:49

Is there any library to deserialize with python which is serialized with java?

7条回答
  •  [愿得一人]
    2021-01-04 10:35

    If you are using Java classes, then I don't even know what it would mean to deserialize a Java class in a Python environment. If you are only using simple primitives (ints, floats, strings), then it probably wouldn't be too hard to build a Python library that could deserialize the Java format.

    But as others have said, there are better cross-platform solutions.

提交回复
热议问题