Java利用gson,将字符串转化为list
public static void main(String[] args) { String jsonString = "[1,2,3,4]"; Gson gson = new Gson(); Type type = new TypeToken<List<Integer>>() { }.getType(); List<Integer> list = gson.fromJson(jsonString, type); System.out.println(list); }
<dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency>
作者:
i孤独行者
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。