摘要:
excel导入导出 依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.17</version> </dependency> <dependency> <groupId>o 阅读全文
posted @ 2019-07-26 16:14
一支会记忆的笔
阅读(400)
评论(0)
推荐(0)
摘要:
在启动类上添加 这个注解即可自动开启任务 任务类 阅读全文
posted @ 2019-07-26 15:32
一支会记忆的笔
阅读(445)
评论(0)
推荐(0)
摘要:
没有依赖 /** * * * COPYRIGHT(C) 2018 * * National Audit Office of the People’s Republic Of China * * * * * * This work contains confidential business info 阅读全文
posted @ 2019-07-26 15:26
一支会记忆的笔
阅读(295)
评论(0)
推荐(0)
摘要:
任务类一 package com.quartz.springboot_quartz.job; import org.quartz.*; import java.text.SimpleDateFormat; import java.util.Date; public class ScheduledJo 阅读全文
posted @ 2019-07-26 15:18
一支会记忆的笔
阅读(526)
评论(0)
推荐(0)
该文被密码保护。 阅读全文
posted @ 2019-07-26 10:38
一支会记忆的笔
阅读(3)
评论(0)
推荐(0)
摘要:
package com.stylefeng.guns.core.util; import java.util.Random; /*** * * 得到中文首字母 * * */ public class PingYinUtil { public static void main(String[] args) { String str = "这是一个... 阅读全文
posted @ 2019-07-26 09:33
一支会记忆的笔
阅读(370)
评论(0)
推荐(0)
摘要:
/** * 删除目录 * */ public static boolean deleteDir(File dir) { if (dir.isDirectory()) { String[] children = dir.list(); for (int i = 0; i < children.le... 阅读全文
posted @ 2019-07-26 09:30
一支会记忆的笔
阅读(211)
评论(0)
推荐(0)
摘要:
package com.stylefeng.guns.core.util; import java.math.BigDecimal; import java.math.RoundingMode; import java.text.DecimalFormat; import java.text.NumberFormat; /** * 数字格式化的类 * */ public cla... 阅读全文
posted @ 2019-07-26 09:18
一支会记忆的笔
阅读(206)
评论(0)
推荐(0)
摘要:
加密算法 package com.stylefeng.guns.core.util; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * MD5加密类(封装jdk自带的md5 阅读全文
posted @ 2019-07-26 09:15
一支会记忆的笔
阅读(275)
评论(0)
推荐(0)

浙公网安备 33010602011771号
返回顶部