Android Open Source - JsonPullParser Json Util






From Project

Back to project page JsonPullParser.

License

The source code is released under:

Apache License

If you think the Android project JsonPullParser listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2011 vvakame <vvakame@gmail.com>
 *// w  w w  .  ja v  a2  s . co  m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.vvakame.util.jsonpullparser.util;

import java.io.IOException;
import java.io.Writer;
import java.util.Date;
import java.util.List;

/**
 * {@link TokenConverter} supporting facility.<br>
 * Generated codes make use of it too.
 * @author vvakame
 */
public class JsonUtil {

  /**
   * Writes "{".
   * @param writer {@link Writer} to be used for writing value
   * @throws IOException
   * @author vvakame
   */
  public static void startHash(Writer writer) throws IOException {
    writer.write("{");
  }

  /**
   * Writes "}".
   * @param writer {@link Writer} to be used for writing value
   * @throws IOException
   * @author vvakame
   */
  public static void endHash(Writer writer) throws IOException {
    writer.write("}");
  }

  /**
   * Writes "[".
   * @param writer {@link Writer} to be used for writing value
   * @throws IOException
   * @author vvakame
   */
  public static void startArray(Writer writer) throws IOException {
    writer.write("[");
  }

  /**
   * Writes "]".
   * @param writer {@link Writer} to be used for writing value
   * @throws IOException
   * @author vvakame
   */
  public static void endArray(Writer writer) throws IOException {
    writer.write("]");
  }

  /**
   * Writes ",".
   * @param writer {@link Writer} to be used for writing value
   * @throws IOException
   * @author vvakame
   */
  public static void addSeparator(Writer writer) throws IOException {
    writer.write(",");
  }

  /**
   * Writes the given key as a JSON hash key, sanitizing with {@link #sanitize(String)} as a valid JSON-formatted data.
   * @param writer {@link Writer} to be used for writing value
   * @param key Key??????????
   * @throws IOException
   * @author vvakame
   */
  public static void putKey(Writer writer, String key) throws IOException {
    writer.write("\"");
    writer.write(sanitize(key));
    writer.write("\":");
  }

  /**
   * Writes the given object.<br>
   * Supported types are: {@link String} {@link Boolean} {@link Long} {@link Double} {@link JsonHash} {@link JsonArray}.<br>
   * An {@link IllegalStateException} will be thrown if the given object has an unsupported type.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Object value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else if (value instanceof String) {
      put(writer, (String) value);
    } else if (value instanceof Boolean) {
      put(writer, (boolean) (Boolean) value);
    } else if (value instanceof Byte) {
      put(writer, (long) (Byte) value);
    } else if (value instanceof Short) {
      put(writer, (long) (Short) value);
    } else if (value instanceof Integer) {
      put(writer, (long) (Integer) value);
    } else if (value instanceof Long) {
      put(writer, (long) (Long) value);
    } else if (value instanceof Float) {
      put(writer, (double) (Float) value);
    } else if (value instanceof Double) {
      put(writer, (double) (Double) value);
    } else if (value instanceof Date) {
      put(writer, (Date) value);
    } else if (value instanceof JsonHash) {
      JsonHash jsonHash = (JsonHash) value;
      jsonHash.toJson(writer);
    } else if (value instanceof JsonArray) {
      JsonArray jsonArray = (JsonArray) value;
      jsonArray.toJson(writer);
    } else {
      throw new IllegalStateException("unknown class. class="
          + value.getClass().getCanonicalName());
    }
  }

  /**
   * Writes the given value with the given writer, sanitizing with {@link #sanitize(String)} as a valid JSON-formatted data.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, String value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write("\"");
      writer.write(sanitize(value));
      writer.write("\"");
    }
  }

  /**
   * Writes the given value with the given writer, sanitizing with {@link #sanitize(String)} as a valid JSON-formatted data.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putStringList(Writer writer, List<String> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer, sanitizing with {@link #sanitize(String)} as a valid JSON-formatted data.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, char value) throws IOException {
    writer.write("\"");
    writer.write(sanitize(value));
    writer.write("\"");
  }

  /**
   * Writes the given value with the given writer, sanitizing with {@link #sanitize(String)} as a valid JSON-formatted data.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Character value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write("\"");
      writer.write(sanitize(value));
      writer.write("\"");
    }
  }

  /**
   * Writes the given value with the given writer, sanitizing with {@link #sanitize(String)} as a valid JSON-formatted data.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putCharacterList(Writer writer, List<Character> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, byte value) throws IOException {
    writer.write(String.valueOf(value));
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Byte value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(value.toString());
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putByteList(Writer writer, List<Byte> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, short value) throws IOException {
    writer.write(String.valueOf(value));
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Short value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(value.toString());
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putShortList(Writer writer, List<Short> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, int value) throws IOException {
    writer.write(String.valueOf(value));
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Integer value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(value.toString());
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putIntegerList(Writer writer, List<Integer> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, long value) throws IOException {
    writer.write(String.valueOf(value));
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Long value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(value.toString());
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putLongList(Writer writer, List<Long> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, float value) throws IOException {
    writer.write(String.valueOf(value));
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Float value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(value.toString());
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putFloatList(Writer writer, List<Float> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, double value) throws IOException {
    writer.write(String.valueOf(value));
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Double value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(value.toString());
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putDoubleList(Writer writer, List<Double> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, boolean value) throws IOException {
    writer.write(String.valueOf(value));
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Boolean value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(value.toString());
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putBooleanList(Writer writer, List<Boolean> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Date value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write(String.valueOf(value.getTime()));
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param value
   * @throws IOException
   * @author vvakame
   */
  public static void put(Writer writer, Enum<?> value) throws IOException {
    if (value == null) {
      writer.write("null");
    } else {
      writer.write("\"");
      writer.write(sanitize(value.name()));
      writer.write("\"");
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putEnumList(Writer writer, List<? extends Enum<?>> values)
      throws IOException {

    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  /**
   * Writes the given value with the given writer.
   * @param writer
   * @param values
   * @throws IOException
   * @author vvakame
   */
  public static void putDateList(Writer writer, List<Date> values) throws IOException {
    if (values == null) {
      writer.write("null");
    } else {
      startArray(writer);
      for (int i = 0; i < values.size(); i++) {
        put(writer, values.get(i));
        if (i != values.size() - 1) {
          addSeparator(writer);
        }
      }
      endArray(writer);
    }
  }

  static String sanitize(char orig) {
    return sanitize(String.valueOf(orig));
  }

  static String sanitize(String orig) {
    if (orig == null) {
      return null;
    }
    // TODO Increase Process Speed
    return orig.replace("\\", "\\\\").replace("\"", "\\\"").replace("/", "\\/")
      .replace("\b", "\\b").replace("\f", "\\f").replace("\n", "\\n").replace("\r", "\\r")
      .replace("\t", "\\t");
  }
}




Java Source Code List

net.vvakame.apt.AptUtil.java
net.vvakame.jsonpullparser.android.sample.MainActivity.java
net.vvakame.sample.BaseData.java
net.vvakame.sample.BuilderData.java
net.vvakame.sample.ComplexData2.java
net.vvakame.sample.ComplexData.java
net.vvakame.sample.ContainsAnotherPackageObjectData.java
net.vvakame.sample.ConverterData.java
net.vvakame.sample.ExtendsData1.java
net.vvakame.sample.ExtendsData2.java
net.vvakame.sample.ForInnerClassData.java
net.vvakame.sample.GenToPackagePrivateData.java
net.vvakame.sample.JsonMetaToPackagePrivateValidData.java
net.vvakame.sample.MiniData.java
net.vvakame.sample.NestDepth1Data.java
net.vvakame.sample.NestDepth2Data.java
net.vvakame.sample.NestParentData.java
net.vvakame.sample.PrimitiveTypeData.java
net.vvakame.sample.PrimitiveWrapperData.java
net.vvakame.sample.PrimitiveWrapperListData.java
net.vvakame.sample.SampleEnum.java
net.vvakame.sample.SortOrderData1.java
net.vvakame.sample.SortOrderData2.java
net.vvakame.sample.StoreJsonData1.java
net.vvakame.sample.StoreJsonData2.java
net.vvakame.sample.TestData.java
net.vvakame.sample.anotherpackage.AnotherPackageClass.java
net.vvakame.sample.converter.IntFlattenConverter.java
net.vvakame.sample.converter.StringDiscardConverter.java
net.vvakame.sample.duma.ItemMapConverter.java
net.vvakame.sample.duma.Item.java
net.vvakame.sample.duma.ReadItLater.java
net.vvakame.sample.issue25.Issue25.java
net.vvakame.sample.issue28.Issue28.java
net.vvakame.sample.issue2.Child0ValueP0.java
net.vvakame.sample.issue2.Child0ValueP1.java
net.vvakame.sample.issue2.Child1ValueP0.java
net.vvakame.sample.issue2.Child1ValueP1.java
net.vvakame.sample.issue2.Grandchild0ValueC0P0.java
net.vvakame.sample.issue2.Grandchild0ValueC0P1.java
net.vvakame.sample.issue2.Grandchild0ValueC1P0.java
net.vvakame.sample.issue2.Grandchild0ValueC1P1.java
net.vvakame.sample.issue2.Grandchild1ValueC0P0.java
net.vvakame.sample.issue2.Grandchild1ValueC0P1.java
net.vvakame.sample.issue2.Grandchild1ValueC1P0.java
net.vvakame.sample.issue2.Grandchild1ValueC1P1.java
net.vvakame.sample.issue2.Parent0Value.java
net.vvakame.sample.issue2.Parent1Value.java
net.vvakame.sample.issue30.PrimitiveList.java
net.vvakame.sample.issue30.RecursiveStructure.java
net.vvakame.sample.issue31.BaseData.java
net.vvakame.sample.issue31.ExtendData.java
net.vvakame.sample.twitter.Place.java
net.vvakame.sample.twitter.Place.java
net.vvakame.sample.twitter.Tweet.java
net.vvakame.sample.twitter.Tweet.java
net.vvakame.sample.twitter.User.java
net.vvakame.sample.twitter.User.java
net.vvakame.twitter.ResultTweet.java
net.vvakame.twitter.SearchResult.java
net.vvakame.util.jsonpullparser.JsonFormatException.java
net.vvakame.util.jsonpullparser.JsonPullParser.java
net.vvakame.util.jsonpullparser.JsonSlice.java
net.vvakame.util.jsonpullparser.Stack.java
net.vvakame.util.jsonpullparser.annotation.JsonKey.java
net.vvakame.util.jsonpullparser.annotation.JsonModel.java
net.vvakame.util.jsonpullparser.annotation.StoreJson.java
net.vvakame.util.jsonpullparser.builder.JsonCoderRouter.java
net.vvakame.util.jsonpullparser.builder.JsonModelBuilder.java
net.vvakame.util.jsonpullparser.builder.JsonModelCoder.java
net.vvakame.util.jsonpullparser.builder.JsonPropertyBuilderCreator.java
net.vvakame.util.jsonpullparser.builder.JsonPropertyBuilder.java
net.vvakame.util.jsonpullparser.builder.JsonPropertyCoder.java
net.vvakame.util.jsonpullparser.builder.JsonPropertyMeta.java
net.vvakame.util.jsonpullparser.factory.JsonAnnotationProcessor.java
net.vvakame.util.jsonpullparser.factory.JsonKeyModel.java
net.vvakame.util.jsonpullparser.factory.JsonModelGenerator.java
net.vvakame.util.jsonpullparser.factory.JsonModelModel.java
net.vvakame.util.jsonpullparser.factory.Log.java
net.vvakame.util.jsonpullparser.factory.StandardTypeKindVisitor.java
net.vvakame.util.jsonpullparser.factory.StoreJsonModel.java
net.vvakame.util.jsonpullparser.factory.template.MvelTemplate.java
net.vvakame.util.jsonpullparser.factory.template.Template.java
net.vvakame.util.jsonpullparser.googleapiclient.JppFactory.java
net.vvakame.util.jsonpullparser.googleapiclient.JppGenerator.java
net.vvakame.util.jsonpullparser.googleapiclient.JppParser.java
net.vvakame.util.jsonpullparser.util.JsonArray.java
net.vvakame.util.jsonpullparser.util.JsonHash.java
net.vvakame.util.jsonpullparser.util.JsonParseUtil.java
net.vvakame.util.jsonpullparser.util.JsonSliceUtil.java
net.vvakame.util.jsonpullparser.util.JsonUtil.java
net.vvakame.util.jsonpullparser.util.OnJsonObjectAddListener.java
net.vvakame.util.jsonpullparser.util.TokenConverter.java
net.vvakame.util.jsonpullparser.util.Type.java