fastjson怎么设置编码为UTF-16

mitkmikd  于 2021-11-27  发布在  Java
关注(0)|答案(1)|浏览(523)

fastjson怎么设置编码为UTF-16

noj0wjuj

noj0wjuj1#

JSON的这两个方法不知道能不能帮到你

public static <T> T parseObject(InputStream is, //
                                    Charset charset, //
                                    Type type, //
                                    Feature... features) throws IOException {
        ...
    }
public static final int writeJSONString(OutputStream os, // 
                                             Charset charset, // 
                                             Object object, // 
                                             SerializerFeature... features) throws IOException {
        ...
    }

相关问题