摘要: 流的转换, 按照条件过滤/映射/摊平/截取/丢弃/连接/去重/排序。辅助方法public static int myCompare(String x, String y) { if(x.length()>y.length()){ return 1; }else if... 阅读全文
posted @ 2018-01-29 21:00 刘达人186 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 展现流的方法public static void show(String title, Stream stream){ System.out.println("title:"+title); List collect = stream.limit(10).coll... 阅读全文
posted @ 2018-01-29 20:44 刘达人186 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 本文介绍了如何产生J2SE 8的流, 包括基本类型的流IntStream, LongStream, DoubleStream 。展现流的方法public static void show(String title, Stream stream){ System.ou... 阅读全文
posted @ 2018-01-29 20:32 刘达人186 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1. 下载Hadoop 3.0http://mirrors.tuna.tsinghua.edu.cn/apache/hadoop/common/hadoop-3.0.0/hadoop-3.0.0.tar.gz 从零开始的 Win7 64Bit 编译Hadoo... 阅读全文
posted @ 2018-01-29 18:07 刘达人186 阅读(179) 评论(0) 推荐(0) 编辑