1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

whitespace

This commit is contained in:
Douglas Crockford 2012-11-13 15:03:43 -08:00
parent dd38c4181d
commit 1b5a59f428

22
README
View file

@ -9,15 +9,15 @@ douglas@crockford.com
JSON is a light-weight, language independent, data interchange format. JSON is a light-weight, language independent, data interchange format.
See http://www.JSON.org/ See http://www.JSON.org/
The files in this package implement JSON encoders/decoders in Java. The files in this package implement JSON encoders/decoders in Java.
It also includes the capability to convert between JSON and XML, HTTP It also includes the capability to convert between JSON and XML, HTTP
headers, Cookies, and CDL. headers, Cookies, and CDL.
This is a reference implementation. There is a large number of JSON packages This is a reference implementation. There is a large number of JSON packages
in Java. Perhaps someday the Java community will standardize on one. Until in Java. Perhaps someday the Java community will standardize on one. Until
then, choose carefully. then, choose carefully.
The license includes this restriction: "The software shall be used for good, The license includes this restriction: "The software shall be used for good,
not evil." If your conscience cannot live with that, then choose a different not evil." If your conscience cannot live with that, then choose a different
package. package.
@ -29,7 +29,7 @@ to produce a map-like object. The object provides methods for manipulating its
contents, and for producing a JSON compliant object serialization. contents, and for producing a JSON compliant object serialization.
JSONArray.java: The JSONObject can parse text from a String or a JSONTokener JSONArray.java: The JSONObject can parse text from a String or a JSONTokener
to produce a vector-like object. The object provides methods for manipulating to produce a vector-like object. The object provides methods for manipulating
its contents, and for producing a JSON compliant array serialization. its contents, and for producing a JSON compliant array serialization.
JSONTokener.java: The JSONTokener breaks a text into a sequence of individual JSONTokener.java: The JSONTokener breaks a text into a sequence of individual
@ -39,15 +39,15 @@ JSONException.java: The JSONException is the standard exception type thrown
by this package. by this package.
JSONString.java: The JSONString interface requires a toJSONString method, JSONString.java: The JSONString interface requires a toJSONString method,
allowing an object to provide its own serialization. allowing an object to provide its own serialization.
JSONStringer.java: The JSONStringer provides a convenient facility for JSONStringer.java: The JSONStringer provides a convenient facility for
building JSON strings. building JSON strings.
JSONWriter.java: The JSONWriter provides a convenient facility for building JSONWriter.java: The JSONWriter provides a convenient facility for building
JSON text through a writer. JSON text through a writer.
CDL.java: CDL provides support for converting between JSON and comma CDL.java: CDL provides support for converting between JSON and comma
delimited lists. delimited lists.
@ -65,4 +65,4 @@ XML.java: XML provides support for converting between JSON and XML.
JSONML.java: JSONML provides support for converting between JSONML and XML. JSONML.java: JSONML provides support for converting between JSONML and XML.
XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text. XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.