How to parse the string into map

后端 未结 5 1137
失恋的感觉
失恋的感觉 2021-02-15 02:24

have a string like A=B&C=D&E=F, how to parse it into map?

5条回答
  •  执念已碎
    2021-02-15 03:08

    just use guava Splitter

    String src="A=B&C=D&E=F";
    Map map= Splitter.on('&').withKeyValueSeparator('=').split(src);
    

提交回复
热议问题