07 2019 档案
摘要:/** * url转变为 MultipartFile对象 * @param url * @param fileName * @return * @throws Exception */private static MultipartFile createFileItem(String url, St
阅读全文
摘要:// 模板String templateurl = "template/test模板.xls";Resource resource = new ClassPathResource(templateurl);HSSFWorkbook workbook = new HSSFWorkbook(new Fi
阅读全文
摘要:-- 当月第一天 SELECT DATE_ADD(curdate(), INTERVAL - DAY(curdate()) + 1 DAY); -- 上个月第一天 select date_sub(DATE_ADD(curdate(), INTERVAL - DAY(curdate()) + 1 DAY), INTERVAL 1 month);-- 上个月今天的当前时间select date_s...
阅读全文
摘要:1.首先获取FileItem对象: public FileItem createFileItem(String filePath) { FileItemFactory factory = new DiskFileItemFactory(16, null); String textFieldName
阅读全文
摘要:SELECT group_concat(b.itemcontent) FROM (SELECT cas.caseId, cas.OVERDUEREASON from d_caseInfo cas where cas.OVERDUEREASON is not null limit 10) a left
阅读全文
摘要:https://www.jianshu.com/p/a47477e8126a crypto-js.js ;(function (root, factory) { if (typeof exports "object") { // CommonJS module.exports = exports =
阅读全文