关于String转换list的一些心得(逻辑判断,小白慎入)

简介: 关于String转换list的一些心得(逻辑判断,小白慎入)

最近面试的时候有一些心得总结是关于String转换list的

代码如下:

 String sL = "["
   + "{\"id\":\"1\",\"name\":\"张三\"},"
   + "{\"id\":\"2\",\"name\":\"李四\"},"
   + "{\"id\":\"3\",\"name\":\"王五\"},"
   + "{\"id\":\"4\",\"name\":\"李雷\"}"
   + "]";
 String sS = "[{\"stuId\":\"1\", \"subjectId\":\"1\", \"subjectName\":\"英语\", \"score\":\"90\"},"
   + "{\"stuId\":\"1\", \"subjectId\":\"2\", \"subjectName\":\"数学\", \"score\":\"80\"},"
   + "{\"stuId\":\"1\", \"subjectId\":\"3\", \"subjectName\":\"语文\", \"score\":\"70\"},"
   + "{\"stuId\":\"2\", \"subjectId\":\"1\", \"subjectName\":\"英语\", \"score\":\"85\"},"
   + "{\"stuId\":\"2\", \"subjectId\":\"2\", \"subjectName\":\"数学\", \"score\":\"75\"},"
   + "{\"stuId\":\"2\", \"subjectId\":\"3\", \"subjectName\":\"语文\", \"score\":\"90\"},{\"stuId\":\"3\", \"subjectId\":\"3\", \"subjectName\":\"语文\", \"score\":\"60\"}]";
 List<Map<String,Object>>list = new ArrayList<Map<String,Object>>();
 List<Map<String,Object>>list1 = new ArrayList<Map<String,Object>>();
 sL = sL.replaceAll("[\\[\\]]", "");//去除方括号
 String[] splitArray = sL.split("},");//去除大括号
 sS = sS.replaceAll("[\\[\\]]", "");//去除方括号
 String[] splitArray1 = sS.split("},");//去除大括号
 for(int i=0; i<splitArray.length;i++) {
  if(i==splitArray.length-1) {
   splitArray[i] = splitArray[i].substring(1, splitArray[i].length()-1);
  }else {
   splitArray[i]=splitArray[i].substring(1, splitArray[i].length());
  } 
  Map<String,Object> map = new HashMap<String,Object>();
  String[] mapArray = splitArray[i].split(",");
  for(int j=0 ;j<mapArray.length ;j++) {
   String str = mapArray[j].replaceAll("\"", "");
   String[] keyValue = str.split(": ");
   //防止value为空
   if(keyValue.length==2) 
    map.put(keyValue[0], keyValue[1]);
   else 
    map.put(keyValue[0], "");
    }
  list.add(map);
  }
 for(int i=0; i<splitArray1.length;i++) {
  if(i==splitArray1.length-1) {
   splitArray1[i] = splitArray1[i].substring(1, splitArray1[i].length()-1);
  }else {
   splitArray1[i]=splitArray1[i].substring(1, splitArray1[i].length());
  } 
  Map<String,Object> map1 = new HashMap<String,Object>();
  String[] mapArray1 = splitArray1[i].split(",");
  for(int j=0 ;j<mapArray1.length ;j++) {
   String str = mapArray1[j].replaceAll("\"", "");
   String[] keyValue = str.split(":");
   if(keyValue.length==2) 
    map1.put(keyValue[0], keyValue[1]);
   else 
    map1.put(keyValue[0], "");
    }
  list1.add(map1);
  }

这是两个string的转换list但是没有把两个list合并键和值的理解自己看一看

string先转换成map再转换成list


目录
相关文章
|
1月前
|
存储 分布式计算 NoSQL
大数据-40 Redis 类型集合 string list set sorted hash 指令列表 执行结果 附截图
大数据-40 Redis 类型集合 string list set sorted hash 指令列表 执行结果 附截图
27 3
|
1月前
|
C++
【C++】C++ STL 探索:List使用与背后底层逻辑(三)
【C++】C++ STL 探索:List使用与背后底层逻辑
|
1月前
|
C++
【C++】C++ STL 探索:List使用与背后底层逻辑(二)
【C++】C++ STL 探索:List使用与背后底层逻辑
|
1月前
|
存储 编译器 C++
【C++】C++ STL 探索:List使用与背后底层逻辑(一)
【C++】C++ STL 探索:List使用与背后底层逻辑
|
2月前
|
存储 JSON NoSQL
redis基本数据结构(String,Hash,Set,List,SortedSet)【学习笔记】
这篇文章是关于Redis基本数据结构的学习笔记,包括了String、Hash、Set、List和SortedSet的介绍和常用命令。文章解释了每种数据结构的特点和使用场景,并通过命令示例演示了如何在Redis中操作这些数据结构。此外,还提供了一些练习示例,帮助读者更好地理解和应用这些数据结构。
redis基本数据结构(String,Hash,Set,List,SortedSet)【学习笔记】
|
3月前
|
XML Java API
List与String相互转化方法汇总
本文汇总了List与String相互转化的多种方法,包括使用`String.join()`、`StringBuilder`、Java 8的Stream API、Apache Commons Lang3的`StringUtils.join()`以及Guava的`Joiner.on()`方法实现List转String;同时介绍了使用`split()`方法、正则表达式、Apache Commons Lang3的`StringUtils.split()`及Guava的`Splitter.on()`方法实现String转List。
110 1
List与String相互转化方法汇总
|
6月前
|
JSON 前端开发 Java
List<String> 如何传参
List<String> 如何传参
442 0
|
4月前
|
XML Java API
List与String相互转化的方法有哪些
摘要:本文概述了Java中List转换为String及反之的多种策略。使用`String.join()`可简洁地连接List元素;`StringBuilder`提供灵活控制;Java 8 Stream API收集器简化操作;Apache Commons Lang3的`StringUtils.join()`和Guava的`Joiner.on()`支持外部库的高效转换。
|
5月前
|
Java API
将`List<String>`转换为`List<Long>`
将`List<String>`转换为`List<Long>`
|
6月前
|
NoSQL Java Redis
redis-学习笔记(string , hash , list , set , zset 前置知识)
redis-学习笔记(string , hash , list , set , zset 前置知识)
34 0
redis-学习笔记(string , hash , list , set , zset 前置知识)