【例子介绍】Java JSON 源码
此资源包包含了《Java的JSON解析》的源代码,包括四个类: 1、JSON #解析json字符串,并生成JSONObject 2、JSONObject #json对象 3、JSONArray #json数组对象 4、JSONException #JSON解析过程中抛出的异常
【相关图片】
【源码结构】
文件清单
└── JSON
├── build
│ ├── built-jar.properties
│ ├── classes
│ │ └── com
│ │ └── hong
│ │ └── xml
│ │ └── json
│ │ ├── JSONArray.class
│ │ ├── JSON.class
│ │ ├── JSONException.class
│ │ └── JSONObject.class
│ ├── empty
│ └── generated-sources
│ └── ap-source-output
├── build.xml
├── dist
│ ├── javadoc
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com
│ │ │ └── hong
│ │ │ └── xml
│ │ │ └── json
│ │ │ ├── class-use
│ │ │ │ ├── JSONArray.html
│ │ │ │ ├── JSONException.html
│ │ │ │ ├── JSON.html
│ │ │ │ └── JSONObject.html
│ │ │ ├── JSONArray.html
│ │ │ ├── JSONException.html
│ │ │ ├── JSON.html
│ │ │ ├── JSONObject.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-files
│ │ │ ├── index-1.html
│ │ │ ├── index-2.html
│ │ │ ├── index-3.html
│ │ │ └── index-4.html
│ │ ├── index.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── resources
│ │ │ ├── background.gif
│ │ │ ├── tab.gif
│ │ │ ├── titlebar_end.gif
│ │ │ └── titlebar.gif
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── JSON.jar
│ └── README.TXT
├── manifest.mf
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── config.properties
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
└── src
└── com
└── hong
└── xml
└── json
├── JSONArray.java
├── JSONException.java
├── JSON.java
└── JSONObject.java
26 directories, 50 files
评论