JsonArray 到 Java List(Gson Library)

这是一个简单的 JsonArray,你想将其转换为 Java ArrayList

{
    "list": [
                "Test_String_1",
                "Test_String_2"
            ] 
}

现在将 JsonArray‘list’传递给以下方法,该方法返回相应的 Java ArrayList

public ArrayList<String> getListString(String jsonList){
    Type listType = new TypeToken<List<String>>() {}.getType();
    //make sure the name 'list' matches the name of 'JsonArray' in your 'Json'.
    ArrayList<String> list = new Gson().fromJson(jsonList, listType);    
    return list;
}

你应该将以下 maven 依赖项添加到 POM.xml 文件中:

<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
    <groupId>com.google.code.gson</groupId>
    <artifactId>gson</artifactId>
    <version>2.7</version>
</dependency>

或者你应该在类路径中使用 jar com.google.code.gson:gson:jar:<version>