net.minidev.json.JSONStyler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-smart Show documentation
Show all versions of json-smart Show documentation
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
package net.minidev.json;
/*
* Copyright 2011 JSON-SMART authors
*
* 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.
*/
import net.minidev.json.parser.ContentHandler;
import net.minidev.json.parser.ParseException;
/**
* This class is used to format JSon output, fot a better humain readability
*
* @author Uriel Chemouni
*/
public class JSONStyler extends JSONStyle implements ContentHandler {
int deep = 0;
Appendable out;
String indent[];
public JSONStyler(int FLAG) {
super(FLAG);
setIdentLevel(2);
}
public JSONStyler(int FLAG, int nbLevel) {
super(FLAG);
setIdentLevel(nbLevel);
}
public void setOutput(Appendable out) {
this.out = out;
}
public void setIdentLevel(int nbLevel) {
String[] indent = new String[nbLevel];
StringBuilder sb = new StringBuilder("\n");
for (int i = 0; i < nbLevel; i++) {
indent[i] = sb.toString();
sb.append(' ');
}
this.indent = indent;
}
public JSONStyler() {
super();
}
public boolean indent() {
return true;
}
public String getNewLine() {
if (deep <= 0)
return "";
if (deep < indent.length)
return indent[deep];
return indent[deep - 1];
}
public JSONStyler getStyler() {
return (JSONStyler) this;
}
// @Override JDK 1.5 compatibility change
public void startJSON() throws ParseException {
}
// @Override JDK 1.5 compatibility change
public void endJSON() throws ParseException {
}
// @Override JDK 1.5 compatibility change
public boolean startObject() throws ParseException {
deep++;
return false;
}
// @Override JDK 1.5 compatibility change
public boolean endObject() throws ParseException {
deep--;
return false;
}
// @Override JDK 1.5 compatibility change
public boolean startObjectEntry(String key) throws ParseException {
return false;
}
// @Override JDK 1.5 compatibility change
public boolean endObjectEntry() throws ParseException {
return false;
}
// @Override JDK 1.5 compatibility change
public boolean startArray() throws ParseException {
deep++;
return false;
}
// @Override JDK 1.5 compatibility change
public boolean endArray() throws ParseException {
deep--;
return false;
}
// @Override JDK 1.5 compatibility change
public boolean primitive(Object value) throws ParseException {
return false;
}
}