use of com.alibaba.fastjson.serializer.SerializeWriter in project fastjson by alibaba.
the class MapSerializerTest method test_empty_1.
public void test_empty_1() throws Exception {
SerializeWriter out = new SerializeWriter();
MapSerializer mapSerializer = new MapSerializer();
mapSerializer.write(new JSONSerializer(out), Collections.EMPTY_MAP, null, null, 0);
Assert.assertEquals("{}", out.toString());
}
use of com.alibaba.fastjson.serializer.SerializeWriter in project fastjson by alibaba.
the class MapTest method toJSONString.
public static final String toJSONString(Object object) {
SerializeWriter out = new SerializeWriter();
try {
JSONSerializer serializer = new JSONSerializer(out);
serializer.config(SerializerFeature.SortField, false);
serializer.config(SerializerFeature.UseSingleQuotes, true);
serializer.write(object);
return out.toString();
} catch (StackOverflowError e) {
throw new JSONException("maybe circular references", e);
} finally {
out.close();
}
}
use of com.alibaba.fastjson.serializer.SerializeWriter in project fastjson by alibaba.
the class IntegerArrayEncodeTest method test_1_s.
public void test_1_s() throws Exception {
SerializeWriter out = new SerializeWriter();
JSONSerializer serializer = new JSONSerializer(out);
serializer.write(new Integer[] {});
Assert.assertEquals("[]", out.toString());
}
use of com.alibaba.fastjson.serializer.SerializeWriter in project fastjson by alibaba.
the class IntegerArrayEncodeTest method test_3_s.
public void test_3_s() throws Exception {
SerializeWriter out = new SerializeWriter();
JSONSerializer serializer = new JSONSerializer(out);
StringBuilder sb = new StringBuilder();
sb.append('[');
int len = 1000;
Integer[] array = new Integer[len];
for (int i = 0; i < array.length; ++i) {
array[i] = i;
if (i != 0) {
sb.append(',');
}
sb.append(i);
}
sb.append(']');
serializer.write(array);
Assert.assertEquals(sb.toString(), out.toString());
}
use of com.alibaba.fastjson.serializer.SerializeWriter in project fastjson by alibaba.
the class JSONSerializerFeatureTest method test_0.
public void test_0() throws Exception {
JSONSerializer serializer = new JSONSerializer(new SerializeWriter());
Assert.assertEquals(true, serializer.isEnabled(SerializerFeature.QuoteFieldNames));
Assert.assertEquals(false, serializer.isEnabled(SerializerFeature.UseSingleQuotes));
}
Aggregations