Package com.alibaba.dubbo.common.io

Examples of com.alibaba.dubbo.common.io.UnsafeStringReader


public class JSONReaderTest extends TestCase
{
  public void testMain() throws Exception
  {
    String json = "{ name: 'name', friends: [ 1, null, 3.2, ] }";
    JSONReader reader = new JSONReader(new UnsafeStringReader(json));
    assertEquals(reader.nextToken().type, JSONToken.LBRACE);
    assertEquals(reader.nextToken().type, JSONToken.IDENT);
    assertEquals(reader.nextToken().type, JSONToken.COLON);
    assertEquals(reader.nextToken().type, JSONToken.STRING);
    assertEquals(reader.nextToken().type, JSONToken.COMMA);
View Full Code Here

TOP

Related Classes of com.alibaba.dubbo.common.io.UnsafeStringReader

Copyright © 2018 www.massapicom. 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.