2020年3月3日

摘要: 个人对于vb.net的难易度进行了一下简单的整理。 1.Weblogic和Webservice 2.ocx和dll 3.spread和grid 4.activereport和水晶报表 5.windowsAPI和数据库连接和VBA宏的调用 阅读全文

posted @ 2020-03-03 22:26 wzhw2015 阅读(282) 评论(0) 推荐(0) 编辑


2020年2月29日

摘要: Map<String,Bean> map = list.stream().collect(Collectors.toMap(bean -> bean.getItemA(),bean->bean)); 阅读全文

posted @ 2020-02-29 14:35 wzhw2015 阅读(1803) 评论(0) 推荐(0) 编辑

摘要: Map<String,String> itemMap = itemList.stream.collect(Collectors.toMap(Bean::getItemA,Bean::getItemB)); 阅读全文

posted @ 2020-02-29 11:10 wzhw2015 阅读(207) 评论(0) 推荐(0) 编辑

摘要: public static <T> List<List<T>> split(List<T> sourceList, int count) { List<List<T>> resultList = new ArrayList<>(); int size = sourceList.size(); if 阅读全文

posted @ 2020-02-29 10:42 wzhw2015 阅读(935) 评论(0) 推荐(0) 编辑

摘要: List<String> itemList = itemMap.entrySet().stream() .collect(Collectors.groupingBy(e -> e.getKey().substring(11))) .keySet() .stream() .map(key -> key 阅读全文

posted @ 2020-02-29 10:31 wzhw2015 阅读(591) 评论(0) 推荐(0) 编辑

摘要: List<String> itemList = list.stream().collect(Collectors.groupingBy(Bean::getItem)).keySet().stream().map(key -> key).collect(Collectors.toList()); 阅读全文

posted @ 2020-02-29 09:56 wzhw2015 阅读(1437) 评论(0) 推荐(0) 编辑

摘要: 1.一个一个项目的分组合计 list.stream().collect( Collectors..groupingBy( Bean::getItemA ,Collectors..groupingBy( Bean::getItemB, Collectors..reducing( new Bean(), 阅读全文

posted @ 2020-02-29 09:13 wzhw2015 阅读(662) 评论(0) 推荐(0) 编辑

摘要: 首先可以先观察一下文件angular-cli.json就会看到 Angular是先执行的index.html,然后执行main.ts 阅读全文

posted @ 2020-02-29 00:05 wzhw2015 阅读(735) 评论(0) 推荐(0) 编辑


2020年2月28日

摘要: 提示ng -v 不是内部或外部命令 解决方法 1.安装过程中是否出错 原因可能是npm install -g @angular/cli,网不稳定导致 解决方法:使用:cnpm install -g @angular/cli进行安装 2.没报错 如果node -v 和 npm -v 命令能够执行,应该 阅读全文

posted @ 2020-02-28 23:02 wzhw2015 阅读(783) 评论(0) 推荐(0) 编辑


2020年2月27日

摘要: node-sass 的数据源没设置 npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass 重新 npm install 阅读全文

posted @ 2020-02-27 00:40 wzhw2015 阅读(925) 评论(0) 推荐(0) 编辑


Copyright © 2024 wzhw2015
Powered by .NET 8.0 on Kubernetes