99JSON is a light-weight, language independent, data interchange format.
1010See http://www.JSON.org/
1111
12- The files in this package implement JSON encoders/decoders in Java.
13- It also includes the capability to convert between JSON and XML, HTTP
14- headers, Cookies, and CDL.
12+ The files in this package implement JSON encoders/decoders in Java.
13+ It also includes the capability to convert between JSON and XML, HTTP
14+ headers, Cookies, and CDL.
1515
1616This is a reference implementation. There is a large number of JSON packages
17- in Java. Perhaps someday the Java community will standardize on one. Until
17+ in Java. Perhaps someday the Java community will standardize on one. Until
1818then, choose carefully.
1919
20- The license includes this restriction: "The software shall be used for good,
20+ The license includes this restriction: "The software shall be used for good,
2121not evil." If your conscience cannot live with that, then choose a different
2222package.
2323
@@ -29,7 +29,7 @@ to produce a map-like object. The object provides methods for manipulating its
2929contents, and for producing a JSON compliant object serialization.
3030
3131JSONArray.java: The JSONObject can parse text from a String or a JSONTokener
32- to produce a vector-like object. The object provides methods for manipulating
32+ to produce a vector-like object. The object provides methods for manipulating
3333its contents, and for producing a JSON compliant array serialization.
3434
3535JSONTokener.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
3939by this package.
4040
4141
42- JSONString.java: The JSONString interface requires a toJSONString method,
42+ JSONString.java: The JSONString interface requires a toJSONString method,
4343allowing an object to provide its own serialization.
4444
45- JSONStringer.java: The JSONStringer provides a convenient facility for
45+ JSONStringer.java: The JSONStringer provides a convenient facility for
4646building JSON strings.
4747
48- JSONWriter.java: The JSONWriter provides a convenient facility for building
48+ JSONWriter.java: The JSONWriter provides a convenient facility for building
4949JSON text through a writer.
50-
50+
5151
5252CDL.java: CDL provides support for converting between JSON and comma
5353delimited lists.
@@ -65,4 +65,4 @@ XML.java: XML provides support for converting between JSON and XML.
6565
6666JSONML.java: JSONML provides support for converting between JSONML and XML.
6767
68- XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.
68+ XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.
0 commit comments