2020年2月26日

摘要: 1.参照项目 Microsoft Internet Controls Microsoft HTML Object 2.sample Sub GetIEItem()Dim objIE As InternetExplorerSet objIE = CreateObject("Internetexplor 阅读全文

posted @ 2020-02-26 22:44 wzhw2015 阅读(563) 评论(0) 推荐(0) 编辑

摘要: Eclipse中->属性->Team->Git->Label Decorations 阅读全文

posted @ 2020-02-26 22:42 wzhw2015 阅读(352) 评论(0) 推荐(0) 编辑

摘要: \sqldeveloper\ide\bin\ide.conf 添加下面的 日语 AddVMOption -Duser.language=jaAddVMOption -Duser.country=JP 英文 AddVMOption -Duser.language=en AddVMOption -Dus 阅读全文

posted @ 2020-02-26 22:41 wzhw2015 阅读(810) 评论(0) 推荐(0) 编辑

摘要: Public Sub FileToFileUpdate(ByVal fileName As String, ByVal strFrm As String, ByVal strTo As String)Dim newFileName As StringnewFileName = fileName & 阅读全文

posted @ 2020-02-26 22:40 wzhw2015 阅读(153) 评论(0) 推荐(0) 编辑

摘要: 1.读入UTF-8文件 Dim value As String Dim vLines As Variant Call ReadCsvUTF_8(vFile.Path, value) vLines = Split(value, vbCrLf) For i = 0 To UBound(vLines) . 阅读全文

posted @ 2020-02-26 22:38 wzhw2015 阅读(2126) 评论(0) 推荐(0) 编辑

摘要: 1.item1升序,item2升序,item3(存在NULL项目,NULL项目排在后面)升序 Collections.sort(list, Comparator.comparing(Bean::getItem1) .thenComparing(Bean::getItem2) .thenCompari 阅读全文

posted @ 2020-02-26 22:36 wzhw2015 阅读(164) 评论(0) 推荐(0) 编辑

摘要: Map<String, List<Bean>> orderMap = list.stream().collect(Collectors.groupingBy(Bean::getItem1, LinkedHashMap::new, Collectors.toCollection(ArrayList:: 阅读全文

posted @ 2020-02-26 22:32 wzhw2015 阅读(364) 评论(0) 推荐(0) 编辑

摘要: 1.新创建一个对象 long startTimeA = System.currentTimeMillis(); StringBuilder sb = null; for (int i = 1; i <= 10000000; i++) { sb = new StringBuilder(); sb.ap 阅读全文

posted @ 2020-02-26 22:30 wzhw2015 阅读(111) 评论(0) 推荐(0) 编辑

摘要: 使用Group By来实现取最新记录,需要注意一个问题,如果最大时间相同的数据都会被取出来。 PS:即使数据字段类型是timestamp,也会登录相同的时间的数据。 select A.* from A inner join ( select C,Max(Time) from A group by C 阅读全文

posted @ 2020-02-26 22:28 wzhw2015 阅读(1128) 评论(0) 推荐(0) 编辑


Copyright © 2024 wzhw2015
Powered by .NET 9.0 on Kubernetes