fabienrenaud / java-json-benchmark

Performance testing of serialization and deserialization of Java JSON libraries
MIT License
965 stars 134 forks source link

Use the built-in Double API of JDK to read and write double precision #103

Closed wycst closed 4 months ago

wycst commented 4 months ago

The default double precision (calculated according to scientific notation) may result in accuracy errors in reading and writing, and verification failures may affect the operation of other JSON libraries. This has been adjusted.

fabienrenaud commented 4 months ago

Thanks!