Fastjson API 中国語版
Fastjson API 中国語版
JSON クラスは fastjson API への入り口であり、主要な機能はこのクラスを通じて提供されます。
package com.alibaba.fastjson;public abstract class JSON { // 将Java对象序列化为JSON字符串,支持各种各种Java基本类型和JavaBean
public static String toJSONString(Object object, SerializerFeature... features); // 将Java对象序列化为JSON字符串,返回JSON字符串的utf-8 bytes
public static byte[] toJSONBytes(Object object, SerializerFeature... features); // 将Java对象序列化为JSON字符串,写入到Writer中
public static void writeJSONString(Writer writer,
Object object,
SerializerFeature... features); // 将Java对象序列化为JSON字符串,按UTF-8编码写入到OutputStream中
public static final int writeJSONString(OutputStream os, //
Object object, //
SerializerFeature... features);
}
##POJO 汎用の解析
POJO を json 文字列に変換
##POJO を json バイトに変換import com.alibaba.fastjson.JSON;Model model = ...;
byte[] jsonBytes = JSON.toJSONBytes(model);
POJO を json 文字列として OutputStream に書き込みますimport com.alibaba.fastjson.JSON;Model model = ...;
OutputStream os;JSON.writeJSONString(os, model);
##POJO を json 文字列として Writer に書き込みます
import com.alibaba.fastjson.JSON; Model model = ...; Writer writer = ...; JSON.writeJSONString(writer, model);