摘要: https://www.cnblogs.com/vcdx/p/9490606.html 阅读全文
posted @ 2018-09-04 18:27 纯丿乱 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 1.导入sql 阅读全文
posted @ 2018-07-02 14:04 纯丿乱 阅读(884) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSON; List<BankAccount> accountList =(List<BankAccount>) JSON.parseArray(jsonData, BankAccount.class); 阅读全文
posted @ 2018-04-10 15:17 纯丿乱 阅读(4033) 评论(0) 推荐(0) 编辑
摘要: 如何快速解析大的xml文件。 案例: 阅读全文
posted @ 2018-03-19 09:47 纯丿乱 阅读(2750) 评论(0) 推荐(0) 编辑
摘要: netty搭建架子 阅读全文
posted @ 2018-03-14 16:58 纯丿乱 阅读(503) 评论(0) 推荐(0) 编辑
摘要: BigDecimal的add 阅读全文
posted @ 2018-03-01 11:02 纯丿乱 阅读(23555) 评论(0) 推荐(1) 编辑
摘要: map按照value进行排序,treemap 阅读全文
posted @ 2018-03-01 10:55 纯丿乱 阅读(1636) 评论(0) 推荐(0) 编辑
摘要: 搭建was: https://www.cnblogs.com/liaokailin/p/3971194.html 阅读全文
posted @ 2017-12-27 17:41 纯丿乱 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 今天的任务是: oracle迁移 db2. 为什么会有这样的工作呢?我也不知道,oracle和db2都稳定的异于常人。 迁移方案: IBMDataMovementTool 。 迁移过程: 1.使用PLSQL将oracle转成bank.sql; 2.使用IBMDataMovementTool 将ban 阅读全文
posted @ 2017-12-26 13:16 纯丿乱 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 今天做了个任务,用的是二重循环,结果老大来审查代码的时候被骂了。 为什么被骂? 以为代码写的low。 废话不多说,直接看代码。 错误的代码: 正确的代码: 测试可得: 100用户100网点的条件下,正确代码比错误代码速度快70%。 分析:这个效率提升在不再需要使用遍历去匹配,而是新创建一个Map,将 阅读全文
posted @ 2017-12-26 11:57 纯丿乱 阅读(601) 评论(2) 推荐(0) 编辑