1 package org
.gaixie
.jibu
.json
;
4 Copyright (c) 2002 JSON.org
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to deal
8 in the Software without restriction, including without limitation the rights
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
13 The above copyright notice and this permission notice shall be included in all
14 copies or substantial portions of the Software.
16 The Software shall be used for Good, not Evil.
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 * This provides static methods to convert comma delimited text into a
29 * JSONArray, and to covert a JSONArray into comma delimited text. Comma
30 * delimited text is a very popular format for data interchange. It is
31 * understood by most database, spreadsheet, and organizer programs.
33 * Each row of text represents a row in a table or a data record. Each row
34 * ends with a NEWLINE character. Each row contains one or more values.
35 * Values are separated by commas. A value can contain any character except
36 * for comma, unless is is wrapped in single quotes or double quotes.
38 * The first row usually contains the names of the columns.
40 * A comma delimited list can be converted into a JSONArray of JSONObjects.
41 * The names for the elements in the JSONObjects can be taken from the names
49 * Get the next value. The value can be wrapped in quotes. The value can
51 * @param x A JSONTokener of the source text.
52 * @return The value string, or null if empty.
53 * @throws JSONException if the quoted string is badly formed.
55 private static String
getValue(JSONTokener x
) throws JSONException
{
61 } while (c
== ' ' || c
== '\t');
68 sb
= new StringBuffer();
74 if (c
== 0 || c
== '\n' || c
== '\r') {
75 throw x
.syntaxError("Missing close quote '" + q
+ "'.");
90 * Produce a JSONArray of strings from a row of comma delimited values.
91 * @param x A JSONTokener of the source text.
92 * @return A JSONArray of strings.
93 * @throws JSONException
95 public static JSONArray
rowToJSONArray(JSONTokener x
) throws JSONException
{
96 JSONArray ja
= new JSONArray();
98 String value
= getValue(x
);
101 (ja
.length() == 0 && value
.length() == 0 && c
!= ',')) {
110 if (c
== '\n' || c
== '\r' || c
== 0) {
113 throw x
.syntaxError("Bad character '" + c
+ "' (" +
122 * Produce a JSONObject from a row of comma delimited text, using a
123 * parallel JSONArray of strings to provides the names of the elements.
124 * @param names A JSONArray of names. This is commonly obtained from the
125 * first row of a comma delimited text file using the rowToJSONArray
127 * @param x A JSONTokener of the source text.
128 * @return A JSONObject combining the names and values.
129 * @throws JSONException
131 public static JSONObject
rowToJSONObject(JSONArray names
, JSONTokener x
)
132 throws JSONException
{
133 JSONArray ja
= rowToJSONArray(x
);
134 return ja
!= null ? ja
.toJSONObject(names
) : null;
138 * Produce a JSONArray of JSONObjects from a comma delimited text string,
139 * using the first row as a source of names.
140 * @param string The comma delimited text.
141 * @return A JSONArray of JSONObjects.
142 * @throws JSONException
144 public static JSONArray
toJSONArray(String string
) throws JSONException
{
145 return toJSONArray(new JSONTokener(string
));
149 * Produce a JSONArray of JSONObjects from a comma delimited text string,
150 * using the first row as a source of names.
151 * @param x The JSONTokener containing the comma delimited text.
152 * @return A JSONArray of JSONObjects.
153 * @throws JSONException
155 public static JSONArray
toJSONArray(JSONTokener x
) throws JSONException
{
156 return toJSONArray(rowToJSONArray(x
), x
);
160 * Produce a JSONArray of JSONObjects from a comma delimited text string
161 * using a supplied JSONArray as the source of element names.
162 * @param names A JSONArray of strings.
163 * @param string The comma delimited text.
164 * @return A JSONArray of JSONObjects.
165 * @throws JSONException
167 public static JSONArray
toJSONArray(JSONArray names
, String string
)
168 throws JSONException
{
169 return toJSONArray(names
, new JSONTokener(string
));
173 * Produce a JSONArray of JSONObjects from a comma delimited text string
174 * using a supplied JSONArray as the source of element names.
175 * @param names A JSONArray of strings.
176 * @param x A JSONTokener of the source text.
177 * @return A JSONArray of JSONObjects.
178 * @throws JSONException
180 public static JSONArray
toJSONArray(JSONArray names
, JSONTokener x
)
181 throws JSONException
{
182 if (names
== null || names
.length() == 0) {
185 JSONArray ja
= new JSONArray();
187 JSONObject jo
= rowToJSONObject(names
, x
);
193 if (ja
.length() == 0) {
201 * Produce a comma delimited text row from a JSONArray. Values containing
202 * the comma character will be quoted. Troublesome characters may be
204 * @param ja A JSONArray of strings.
205 * @return A string ending in NEWLINE.
207 public static String
rowToString(JSONArray ja
) {
208 StringBuffer sb
= new StringBuffer();
209 for (int i
= 0; i
< ja
.length(); i
+= 1) {
213 Object o
= ja
.opt(i
);
215 String s
= o
.toString();
216 if (s
.length() > 0 && (s
.indexOf(',') >= 0 || s
.indexOf('\n') >= 0 ||
217 s
.indexOf('\r') >= 0 || s
.indexOf(0) >= 0 ||
218 s
.charAt(0) == '"')) {
220 int length
= s
.length();
221 for (int j
= 0; j
< length
; j
+= 1) {
222 char c
= s
.charAt(j
);
223 if (c
>= ' ' && c
!= '"') {
234 return sb
.toString();
238 * Produce a comma delimited text from a JSONArray of JSONObjects. The
239 * first row will be a list of names obtained by inspecting the first
241 * @param ja A JSONArray of JSONObjects.
242 * @return A comma delimited text.
243 * @throws JSONException
245 public static String
toString(JSONArray ja
) throws JSONException
{
246 JSONObject jo
= ja
.optJSONObject(0);
248 JSONArray names
= jo
.names();
250 return rowToString(names
) + toString(names
, ja
);
257 * Produce a comma delimited text from a JSONArray of JSONObjects using
258 * a provided list of names. The list of names is not included in the
260 * @param names A JSONArray of strings.
261 * @param ja A JSONArray of JSONObjects.
262 * @return A comma delimited text.
263 * @throws JSONException
265 public static String
toString(JSONArray names
, JSONArray ja
)
266 throws JSONException
{
267 if (names
== null || names
.length() == 0) {
270 StringBuffer sb
= new StringBuffer();
271 for (int i
= 0; i
< ja
.length(); i
+= 1) {
272 JSONObject jo
= ja
.optJSONObject(i
);
274 sb
.append(rowToString(jo
.toJSONArray(names
)));
277 return sb
.toString();