public static void main(String[] args) {
TreeMap<String,String> map = new TreeMap<>();
map.put("bizContent","bizContent.toString()");
map.put("appId",Configs.APPID.toString());
map.put("timestamp","timestamp.toString()");
map.put("serviceName","serviceName");
map.put("key",Configs.key);
final String s = new Gson().toJson(map);
Map<String,String> map2 = new HashMap<>();
map2.put("bizContent","bizContent.toString()");
map2.put("appId",Configs.APPID.toString());
map2.put("timestamp","timestamp.toString()");
map2.put("serviceName","serviceName");
map2.put("key",Configs.key);
map2.entrySet().stream()
.map(e -> e.getKey() + ": " + e.getValue())
.forEach(System.out::println);
String collect = map.entrySet().stream()
.map(e -> e.getKey() + "=" + e.getValue())
.collect(Collectors.joining("&"));
System.out.println(collect);
String collect2 = map2.entrySet().stream()
.map(e -> e.getKey() + "=" + e.getValue())
.collect(Collectors.joining("&"));
System.out.println(collect2);
Stream.of("i am ben".split(" ")).forEach((i)-> System.out.print(i+" " ));
//System.out.println("S="+s);
Random rand = new Random(47);
show(rand.ints(2).boxed());
show(rand.ints(10).boxed());
new RequestModel().numbers().limit(10)
.map(k-> k+"=" )
.forEach((i)-> System.out.print(i+" " ));
System.out.println();
rands().limit(SZ)
.forEach(n -> System.out.format("%d ", n));
System.out.println();
rands().limit(SZ)
.parallel()
.forEach(n -> System.out.format("%d ", n));
System.out.println();
rands().limit(SZ)
.parallel()
.forEachOrdered(n -> System.out.format("%d ", n));
}
static final int SZ = 14;
private static int[] rints = new Random(47).ints(0, 1000).limit(100).toArray();
public static IntStream rands() {
return Arrays.stream(rints);
}
int x = 1;
Stream<Integer> numbers() {
return Stream.iterate(0, i -> {
int result = x + i;
x = i;
return result;
});
}
public static <T> void show(Stream<T> stream) {
stream
.limit(3)
.forEach(System.out::println);
System.out.println("++++++++");
}
2020-12-07 JAVA LIST MAP STREAM
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- info.getSysFiles().stream().mapToDouble(SysFile::getUsage...
- java stream处理list根据多个字段判断重复 List去重复 ,我们首先想到的可能是 利用List转S...
- 1.对多个属性去重 2.分组 3.过滤 4.list转map 5.map转list 6.遍历map
- 本套JAVA8教程由于是有英文翻译过来的,如果有翻译不对的地方还请多多包涵。 本节课先简单的介绍下Java8有哪些...