摘要: 工具类 package com.example.demo.util; import org.apache.poi.hssf.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFCell; import org.apache.poi.xssf.u 阅读全文
posted @ 2017-12-08 17:55 亲爱的阿道君 阅读(474) 评论(0) 推荐(0)
摘要: 1. express不是内部命令,在终端上执行以下代码 npm install -g express npm install -g express-generator 第一行代码默认"全局"安装下载express最新版本,而最新版本将命令行工具分离出来了,所以需要执行第二行代码 阅读全文
posted @ 2017-12-07 17:55 亲爱的阿道君 阅读(122) 评论(0) 推荐(0)
摘要: maven地址 demo 阅读全文
posted @ 2017-12-06 09:40 亲爱的阿道君 阅读(147) 评论(0) 推荐(0)
摘要: 1. 设置全局环境路径 如果还不行,在nodejs的安装目录中找到node_modules\npm\.npmrc文件 修改如下即可: prefix = D:\nodejs\node_globalcache = D:\nodejs\node_global 2. 使用淘宝镜像 安装后提示 'cnpm' 阅读全文
posted @ 2017-12-03 23:01 亲爱的阿道君 阅读(99) 评论(0) 推荐(0)
摘要: String id = "10010";String name = "tom";String age = 50;String str= "{\"id\":\"" + id + "\"," + "\"name\": \"" + name + "\"," + "\"age\": \"" + age + 阅读全文
posted @ 2017-11-28 18:32 亲爱的阿道君 阅读(113) 评论(0) 推荐(0)
摘要: CommonJS http://javascript.ruanyifeng.com/nodejs/module.html Vue https://cn.vuejs.org/v2/guide/installation.html iView https://www.iviewui.com/docs/gu 阅读全文
posted @ 2017-11-27 13:40 亲爱的阿道君 阅读(151) 评论(0) 推荐(0)
摘要: public static List mergePdf(List filePath) throws Exception { List list = new ArrayList(); long m10 = 10 * 1024 * 1024; long legth = 0; File file = null; PDFM... 阅读全文
posted @ 2017-11-23 18:49 亲爱的阿道君 阅读(293) 评论(0) 推荐(0)
摘要: http://825635381.iteye.com/blog/2184680#comments 阅读全文
posted @ 2017-11-20 12:30 亲爱的阿道君 阅读(94) 评论(0) 推荐(0)
摘要: nohup java -jar xxx.jar >xxx.log 2>&1 & ps aux|grep xxx.jar 阅读全文
posted @ 2017-11-17 19:56 亲爱的阿道君 阅读(108) 评论(0) 推荐(0)
摘要: mvn clean install -Pdev -DskipTests 阅读全文
posted @ 2017-11-17 19:41 亲爱的阿道君 阅读(124) 评论(0) 推荐(0)