码迷,mamicode.com
首页 > Web开发 > 详细

用 org.json 解析JSON

时间:2016-12-05 02:36:07      阅读:3119      评论:0      收藏:0      [点我收藏+]

标签:tde   sans   git   return   and   classpath   jpa   tle   jason   

1.下载 java-json.jar 包

    介绍:http://www.json.org/

    下载:

            https://github.com/stleary/JSON-java/releases

            https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.json%22%20AND%20a%3A%22json%22

           附件:java-json.jar.zip

           附件:json-20160810-javadoc.jar      

 

2.解析 JSON 

    代码如下:

 1 import org.json.JSONObject;
 2 import org.json.JSONException; 
 3 
 4 public class testJson{
 5     
 6     public static String jsonObjCreate(){
 7         JSONObject jsonObj = new JSONObject();  
 8         try {  
 9             jsonObj.put("name", "Jason");  
10             jsonObj.put("id", 20130001);  
11             jsonObj.put("phone", "13579246810");              
12             
13             return jsonObj.toString();
14             
15         } catch (JSONException e) {  
16             e.printStackTrace();  
17         }
18         return null;          
19     }
20     
21     public static void jsonObjParse(String jsonText) {
22         try{
23             JSONObject jsonObj = new JSONObject(jsonText);
24             System.out.println("test parse name: " + jsonObj.getString("name"));
25             System.out.println("test parse id  : " +jsonObj.getInt("id"));
26         } catch (JSONException e) {  
27             e.printStackTrace();  
28         } 
29     }
30 
31     public static void main(String[] args){        
32         //1
33         String jsonText = jsonObjCreate();
34         System.out.println("test create object: " + jsonText + "\r\n");
35         
36         //2
37         jsonObjParse(jsonText);
38     }
39 }

3.执行结果:

    技术分享

4.遇到的问题:

    (1)

        testJson.java:23: 错误: 未报告的异常错误JSONException; 必须对其进行捕获或声明以便抛出

        JSONObject jsonObj = new JSONObject(jsonText);

        解决:加try catch

    (2) 编译过但执行报错

        Error: A JNI error has occurred, please check your installation and try again Exception in thread "main" java.lang.NoClassDefFoundError:                 org/json/JSONException         at java.lang.Class.getDeclaredMethods0(Native Method)

技术分享

        解决:将 java-json.jar 加到 CLASSPATH 环境变量内。

 

 

 

    

用 org.json 解析JSON

标签:tde   sans   git   return   and   classpath   jpa   tle   jason   

原文地址:http://www.cnblogs.com/sansuiwantong/p/6132517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!