Fastjson parseObject



#Fastjson parseObject

InputStream



#バージョン 1.2.11 で、fastjson が新たに追加されましたインプットストリームのサポート。

package com.alibaba.fastjson;

public abstract class JSON {
    public static <T> T parseObject(InputStream is, //
                                    Type type, //
                                    Feature... features) throws IOException;

    public static <T> T parseObject(InputStream is, //
                                    Charset charset, //
                                    Type type, //
                                    Feature... features) throws IOException;
}