JSONArray到可用的Java / String数组

时间:2017-12-14 04:13:33

标签: java json

这不重复

我的JSON不在JSONArray中,我的JSON是所有对象。但是我已经将对象传递给JSONArray,因为这是我能够弄清楚如何在“补丁”中获取每个对象的唯一方法。

现在我已将所有内容转换为JSONArray但我无法像我希望的那样使用它。这样做的最终目标是从服务器端获取JSON(顺便说一下,这是动态的,修补程序下的补丁文件会被重新生成并添加新的补丁)最终我想获取该数组列表并使用它来搜索那些用户目录中的软件包,但以后的软件包。

现在我无法弄清楚如何将数据转换出JSONArray。

JSON目前在服务器端的结构如下。 (不能改变这种结构)。

{  
   "patches":{  
      "patch1.zip":{  
         "name":"patch1.zip",
         "type":"file",
         "path":"patch1.zip",
         "size":15445899,
         "checksum":"ed4e2275ba67470d472c228a78df9897"
      },
      "patch2.zip":{  
         "name":"patch2.zip",
         "type":"file",
         "path":"patch2.zip",
         "size":1802040,
         "checksum":"59de97037e5398c5f0938ce49a3fa200"
      },
      "patch3.zip":{  
         "name":"patch3.zip",
         "type":"file",
         "path":"patch3.zip",
         "size":6382378,
         "checksum":"25efa1e9145a4777deaf589c5b28d9ad"
      },
      "user.cfg":{  
         "name":"user.cfg",
         "type":"file",
         "path":"user.cfg",
         "size":819,
         "checksum":"489a315ac832513f4581ed903ba2886e"
      }
   }
}

我已经研究过使用GSON和JACKSON但是在从JSON中提取动态数据时无法弄清楚如何使它们工作。

我正在使用org.json LIB。

ReadUrl.java

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;

public class ReadUrl {
    static String getUrl(String urlString) throws Exception {
        BufferedReader reader = null;
        try {
            URL url = new URL(urlString);
            reader = new BufferedReader(new InputStreamReader(url.openStream()));
            StringBuilder buffer = new StringBuilder();
            int read;
            char[] chars = new char[1024];
            while ((read = reader.read(chars)) != -1)
                buffer.append(chars, 0, read);
            return buffer.toString();
        } finally {
            if (reader != null)
                reader.close();
        }
    }
}

Main.java

import org.json.JSONArray;
import org.json.JSONObject;

public class Main {
    private static final boolean isDebugMode = true;
    /**
     * @param args the command line arguments
     * @throws java.lang.Exception
     */
    public static void main(String[] args) throws Exception  {
        String sReadURL = ReadUrl.getUrl("http://www.aerosimulations.com/wp-content/uploads/example.json");

        if (isDebugMode) {
            System.out.println(sReadURL);
        }

        JSONObject responseJSON = new JSONObject(sReadURL);
        JSONObject obj1_JSON = responseJSON.getJSONObject("patches");

        JSONArray jPatches = obj1_JSON.names();

        if (isDebugMode) {
            System.out.println(jPatches);
        }

        for(int i = 0; i < jPatches.length(); i++){

        }

    }
}

我的要求是,我需要能够从'patches'获取补丁名称并返回一个可用的java数组。

1 个答案:

答案 0 :(得分:1)

我会在这种情况下使用杰克逊树模型:

    //first, you create a mapper object
    ObjectMapper mapper = new ObjectMapper();

    //then you create a JsonNode instance representing your JSON root structure
    JsonNode root = null;
    try {
        root = mapper.readTree(json);
    } catch (IOException e) {
        e.printStackTrace();
    }

    //here you get the list of your patches nodes
    JsonNode list = root.path("patches");

    //then you can iterate through them and get any inner value
    for (JsonNode patch : list) {
        //for example, you can get a file name
        System.out.println(patch.path("name"));
    }

此代码的输出将为:

patch1.zip
patch2.zip
patch3.zip
user.cfg