摘要: 1.修改/etc/apt/sources.list,加入下面的内容: deb https://deb.nodesource.com/node_12.x stretch maindeb-src https://deb.nodesource.com/node_12.x stretch main 2.然后 阅读全文
posted @ 2020-06-04 11:02 丿风轻灬云淡 阅读(352) 评论(0) 推荐(0) 编辑
摘要: excel多表头和分级数据导出 package com.ruoyi.project.common.poi; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.utils.DateUtils; imp 阅读全文
posted @ 2020-06-02 09:47 丿风轻灬云淡 阅读(1895) 评论(3) 推荐(0) 编辑
摘要: <dependency> <groupId>com.oracle.ojdbc</groupId> <artifactId>ojdbc8</artifactId> <version>19.3.0.0</version> </dependency> <dependency> <groupId>com.o 阅读全文
posted @ 2020-06-02 09:43 丿风轻灬云淡 阅读(806) 评论(0) 推荐(0) 编辑
摘要: 加密: Base64.Encoder encoder = Base64.getEncoder(); String base64 = encoder.encodeToString(bytes); 解密: Base64.Decoder decoder = Base64.getDecoder(); byt 阅读全文
posted @ 2020-06-02 09:41 丿风轻灬云淡 阅读(95) 评论(0) 推荐(0) 编辑
摘要: const arr = [2,4,16]; let v = 0; for(const i in arr) v |= arr[i]; console.log(v); let xxx = 23;// 16 4 2 let r = []; let i = 0; while (xxx > 0) { cons 阅读全文
posted @ 2020-05-27 11:39 丿风轻灬云淡 阅读(215) 评论(0) 推荐(0) 编辑
摘要: select * from lwjh_source where bitand(multiple, :value) > 0 阅读全文
posted @ 2020-05-27 11:36 丿风轻灬云淡 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 我是一个.net程序员,但是苦于公司要求开发一个android app,没办法,只能硬着头皮上了。由于项目里面很多地方需要用到数据显示控件(类似于.net的DataGridView),度娘找了下发现没人公开类似的控件,没办法只好自己写了。废话不多说,直接贴代码: 1 public class Da... 阅读全文
posted @ 2015-12-07 14:46 丿风轻灬云淡 阅读(4767) 评论(3) 推荐(1) 编辑