@@ -9,15 +9,15 @@ douglas@crockford.com
9
9
JSON is a light-weight, language independent, data interchange format.
10
10
See http://www.JSON.org/
11
11
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.
15
15
16
16
This 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
18
18
then, choose carefully.
19
19
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,
21
21
not evil." If your conscience cannot live with that, then choose a different
22
22
package.
23
23
@@ -29,7 +29,7 @@ to produce a map-like object. The object provides methods for manipulating its
29
29
contents, and for producing a JSON compliant object serialization.
30
30
31
31
JSONArray.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
33
33
its contents, and for producing a JSON compliant array serialization.
34
34
35
35
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
39
39
by this package.
40
40
41
41
42
- JSONString.java: The JSONString interface requires a toJSONString method,
42
+ JSONString.java: The JSONString interface requires a toJSONString method,
43
43
allowing an object to provide its own serialization.
44
44
45
- JSONStringer.java: The JSONStringer provides a convenient facility for
45
+ JSONStringer.java: The JSONStringer provides a convenient facility for
46
46
building JSON strings.
47
47
48
- JSONWriter.java: The JSONWriter provides a convenient facility for building
48
+ JSONWriter.java: The JSONWriter provides a convenient facility for building
49
49
JSON text through a writer.
50
-
50
+
51
51
52
52
CDL.java: CDL provides support for converting between JSON and comma
53
53
delimited lists.
@@ -65,4 +65,4 @@ XML.java: XML provides support for converting between JSON and XML.
65
65
66
66
JSONML.java: JSONML provides support for converting between JSONML and XML.
67
67
68
- XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.
68
+ XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.
0 commit comments