We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
答:fastjson2支持JDK 8+,每次构建都会验证在JDK 8/11/17/21三个JDK LTS版本上验证。
支持,fastjson2序列化支持输出为char[]和byte[]。不需要将byte[]转成String再做parse,可以提升性能。使用如下:
byte[] utf8 = ...; JSON.parseObject(utf8, Bean.class);