package org.json;
/*
Copyright (c) 2002 JSON.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
import java.io.IOException;
import java.io.Writer;
import java.util.Collection;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
/**
* A JSONObject is an unordered collection of name/value pairs. Its
* external form is a string wrapped in curly braces with colons between the
* names and values, and commas between the values and names. The internal form
* is an object having <code>get</code> and <code>opt</code> methods for
* accessing the values by name, and <code>put</code> methods for adding or
* replacing values by name. The values can be any of these types:
* <code>Boolean</code>, <code>JSONArray</code>, <code>JSONObject</code>,
* <code>Number</code>, <code>String</code>, or the <code>JSONObject.NULL</code>
* object. A JSONObject constructor can be used to convert an external form
* JSON text into an internal form whose values can be retrieved with the
* <code>get</code> and <code>opt</code> methods, or to convert values into a
* JSON text using the <code>put</code> and <code>toString</code> methods.
* A <code>get</code> method returns a value if one can be found, and throws an
* exception if one cannot be found. An <code>opt</code> method returns a
* default value instead of throwing an exception, and so is useful for
* obtaining optional values.
* <p>
* The generic <code>get()</code> and <code>opt()</code> methods return an
* object, which you can cast or query for type. There are also typed
* <code>get</code> and <code>opt</code> methods that do type checking and type
* coersion for you.
* <p>
* The <code>put</code> methods adds values to an object. For example, <pre>
* myString = new JSONObject().put("JSON", "Hello, World!").toString();</pre>
* produces the string <code>{"JSON": "Hello, World"}</code>.
* <p>
* The texts produced by the <code>toString</code> methods strictly conform to
* the JSON sysntax rules.
* The constructors are more forgiving in the texts they will accept:
* <ul>
* <li>An extra <code>,</code> <small>(comma)</small> may appear just
* before the closing brace.</li>
* <li>Strings may be quoted with <code>'</code> <small>(single
* quote)</small>.</li>
* <li>Strings do not need to be quoted at all if they do not begin with a quote
* or single quote, and if they do not contain leading or trailing spaces,
* and if they do not contain any of these characters:
* <code>{ } [ ] / \ : , = ; #</code> and if they do not look like numbers
* and if they are not the reserved words <code>true</code>,
* <code>false</code>, or <code>null</code>.</li>
* <li>Keys can be followed by <code>=</code> or <code>=></code> as well as
* by <code>:</code>.</li>
* <li>Values can be followed by <code>;</code> <small>(semicolon)</small> as
* well as by <code>,</code> <small>(comma)</small>.</li>
* <li>Numbers may have the <code>0-</code> <small>(octal)</small> or
* <code>0x-</code> <small>(hex)</small> prefix.</li>
* <li>Comments written in the slashshlash, slashstar, and hash conventions
* will be ignored.</li>
* </ul>
* @author JSON.org
* @version 2
*/
public class JSONObject {
/**
* JSONObject.NULL is equivalent to the value that JavaScript calls null,
* whilst Java's null is equivalent to the value that JavaScript calls
* undefined.
*/
private static final class Null {
/**
* There is only intended to be a single instance of the NULL object,
* so the clone method returns itself.
* @return NULL.
*/
protected final Object clone() {
return this;
}
/**
* A Null object is equal to the null value and to itself.
* @param object An object to test for nullness.
* @return true if the object parameter is the JSONObject.NULL object
* or null.
*/
public boolean equals(Object object) {
return object == null || object == this;
}
/**
* Get the "null" string value.
* @return The string "null".
*/
public String toString() {
return "null";
}
}
/**
* The hash map where the JSONObject's properties are kept.
*/
private HashMap myHashMap;
/**
* It is sometimes more convenient and less ambiguous to have a
* <code>NULL</code> object than to use Java's <code>null</code> value.
* <code>JSONObject.NULL.equals(null)</code> returns <code>true</code>.
* <code>JSONObject.NULL.toString()</code> returns <code>"null"</code>.
*/
public static final Object NULL = new Null();
/**
* Construct an empty JSONObject.
*/
public JSONObject() {
this.myHashMap = new HashMap();
}
/**
* Construct a JSONObject from a subset of another JSONObject.
* An array of strings is used to identify the keys that should be copied.
* Missing keys are ignored.
* @param jo A JSONObject.
* @param names An array of strings.
* @exception JSONException If a value is a non-finite number.
*/
public JSONObject(JSONObject jo, String[] names) throws JSONException {
this();
for (int i = 0; i < names.length; i += 1) {
putOpt(names[i], jo.opt(names[i]));
}
}
/**
* Construct a JSONObject from a JSONTokener.
* @param x A JSONTokener object containing the source string.
* @throws JSONException If there is a syntax error in the source string.
*/
public JSONObject(JSONTokener x) throws JSONException {
this();
char c;
String key;
if (x.nextClean() != '{') {
throw x.syntaxError("A JSONObject text must begin with '{'");
}
for (;;) {
c = x.nextClean();
switch (c) {
case 0:
throw x.syntaxError("A JSONObject text must end with '}'");
case '}':
return;
default:
x.back();
key = x.nextValue().toString();
}
/*
* The key is followed by ':'. We will also tolerate '=' or '=>'.
*/
c = x.nextClean();
if (c == '=') {
if (x.next() != '>') {
x.back();
}
} else if (c != ':') {
throw x.syntaxError("Expected a ':' after a key");
}
put(key, x.nextValue());
/*
* Pairs are separated by ','. We will also tolerate ';'.
*/
switch (x.nextClean()) {
case ';':
case ',':
if (x.nextClean() == '}') {
return;
}
没有合适的资源?快使用搜索试试~ 我知道了~
经典Structs教程
共873个文件
jsp:186个
class:171个
java:166个
4星 · 超过85%的资源 需积分: 10 41 下载量 167 浏览量
2009-08-11
12:45:11
上传
评论
收藏 698KB RAR 举报
温馨提示
经典Structs教程经典Structs教程经典Structs教程经典Structs教程经典Structs教程经典Structs教程经典Structs教程经典Structs教程经典Structs教程经典Structs教程
资源推荐
资源详情
资源评论
收起资源包目录
经典Structs教程 (873个子文件)
Test.class 17KB
JSONObject.class 17KB
JSONArray.class 11KB
XML.class 6KB
CategoryDao.class 6KB
CategoryDao.class 6KB
CategoryDao.class 6KB
JSONTokener.class 5KB
ValidationCodeAction.class 4KB
ValidationCodeAction.class 4KB
ValidationCodeAction.class 4KB
ValidationCodeAction.class 4KB
MultiFileUploadAction.class 4KB
XMLTokener.class 4KB
RegisterAction.class 4KB
RegisterAction.class 4KB
RegisterAction.class 4KB
CDL.class 4KB
RegisterAction.class 4KB
UserDao.class 4KB
UserDao.class 4KB
UserDao.class 4KB
UserDao.class 4KB
UserDao.class 4KB
UserDao.class 4KB
JSONWriter.class 4KB
FileUploadAction.class 4KB
UserDao.class 4KB
UserDao.class 4KB
User.class 4KB
User.class 4KB
User.class 4KB
User.class 4KB
OgnlAction.class 4KB
Cookie.class 3KB
Category.class 3KB
XmlBookServlet.class 3KB
JsonBookServlet.class 3KB
ControllerServlet.class 3KB
DoubleselectTagAction.class 3KB
User.class 3KB
User.class 3KB
User.class 3KB
User.class 3KB
OgnlExpression.class 2KB
Employee.class 2KB
HTTP.class 2KB
XmlBookServlet$1.class 2KB
CategoryAction.class 2KB
CategoryAction.class 2KB
CategoryAction.class 2KB
JsonExampleAction.class 2KB
LoginAction4.class 2KB
HibernateThreadFilter.class 2KB
HibernateThreadFilter.class 2KB
LoginAction2.class 2KB
LoginAction3.class 2KB
DojoBookServlet.class 2KB
FileDownloadInterceptor$1.class 2KB
LoginAction1.class 2KB
CategoryHibernateDao.class 2KB
CategoryHibernateDao.class 2KB
CookieList.class 2KB
NumberConverter.class 2KB
RegisterAction.class 2KB
RegisterAction.class 2KB
Test$1Obj.class 2KB
LoginAction.class 2KB
BookManager.class 2KB
ValidationCodeResult.class 2KB
ValidationCodeResult.class 2KB
ValidationCodeResult.class 2KB
ValidationCodeResult.class 2KB
DateTypeConverter.class 2KB
FreeMarkerTemplateSupport.class 2KB
LoginForm.class 2KB
ValidationCodeValidator.class 2KB
ValidationCodeValidator.class 2KB
ValidationCodeValidator.class 2KB
ValidationCodeValidator.class 2KB
CategorySpringDao.class 2KB
LoginAction.class 1KB
AutocompleterExampleAction.class 1KB
LoginAction.class 1KB
AuthenticationInterceptor.class 1KB
RegisterAction.class 1KB
RegisterAction.class 1KB
Address.class 1KB
IndexAction.class 1KB
SelectTagAction.class 1KB
Student.class 1KB
Book.class 1KB
TimerInterceptor.class 1KB
LoggerInterceptor.class 1KB
ActionTagAction.class 1KB
HibernateUtil.class 1KB
HibernateUtil.class 1KB
Book.class 1KB
LoggerInterceptor$1.class 1KB
LoginAction.class 1KB
共 873 条
- 1
- 2
- 3
- 4
- 5
- 6
- 9
资源评论
- y3082991602011-09-16还好吧,但是就是不完整,希望楼主能发个完整的
- gol9992012-08-30是啊,不完整啊
zjf1103
- 粉丝: 0
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功