source: main/trunk/model-sites-dev/cambridge-museum/collect/waikato-independent/pre-import/EditableDatabaseTable/build/classes/org/json/README@ 34493

Last change on this file since 34493 was 34493, checked in by davidb, 4 years ago

Base project for providing jquery/jquery-ui controlled interface to editing a database table

  • Property svn:executable set to *
File size: 2.3 KB
Line 
1JSON in Java [package org.json]
2
3Douglas Crockford
4[email protected]
5
62011-02-02
7
8
9JSON is a light-weight, language independent, data interchange format.
10See http://www.JSON.org/
11
12The files in this package implement JSON encoders/decoders in Java.
13It also includes the capability to convert between JSON and XML, HTTP
14headers, Cookies, and CDL.
15
16This is a reference implementation. There is a large number of JSON packages
17in Java. Perhaps someday the Java community will standardize on one. Until
18then, choose carefully.
19
20The license includes this restriction: "The software shall be used for good,
21not evil." If your conscience cannot live with that, then choose a different
22package.
23
24The package compiles on Java 1.2 thru Java 1.4.
25
26
27JSONObject.java: The JSONObject can parse text from a String or a JSONTokener
28to produce a map-like object. The object provides methods for manipulating its
29contents, and for producing a JSON compliant object serialization.
30
31JSONArray.java: The JSONObject can parse text from a String or a JSONTokener
32to produce a vector-like object. The object provides methods for manipulating
33its contents, and for producing a JSON compliant array serialization.
34
35JSONTokener.java: The JSONTokener breaks a text into a sequence of individual
36tokens. It can be constructed from a String, Reader, or InputStream.
37
38JSONException.java: The JSONException is the standard exception type thrown
39by this package.
40
41
42JSONString.java: The JSONString interface requires a toJSONString method,
43allowing an object to provide its own serialization.
44
45JSONStringer.java: The JSONStringer provides a convenient facility for
46building JSON strings.
47
48JSONWriter.java: The JSONWriter provides a convenient facility for building
49JSON text through a writer.
50
51
52CDL.java: CDL provides support for converting between JSON and comma
53delimited lists.
54
55Cookie.java: Cookie provides support for converting between JSON and cookies.
56
57CookieList.java: CookieList provides support for converting between JSON and
58cookie lists.
59
60HTTP.java: HTTP provides support for converting between JSON and HTTP headers.
61
62HTTPTokener.java: HTTPTokener extends JSONTokener for parsing HTTP headers.
63
64XML.java: XML provides support for converting between JSON and XML.
65
66JSONML.java: JSONML provides support for converting between JSONML and XML.
67
68XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.
Note: See TracBrowser for help on using the repository browser.