Package com.alibaba.fastjson.serializer

Examples of com.alibaba.fastjson.serializer.SerializeWriter.writeInt()


  }

  public void test_1() throws Exception {
    SerializeWriter writer = new SerializeWriter();
    writer.writeInt(-1);
    Assert.assertEquals("-1", writer.toString());
  }

  public void test_4() throws Exception {
    SerializeWriter writer = new SerializeWriter();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.