
javaSE
kaisens
这个作者很懒,什么都没留下…
展开
-
java定时任务cron表达式 ,每周五下午两点半执行
@Scheduled(cron = “0 30 14 ? * 5”)信了其他文章的鬼,也可能java不一样,DayofWeek这个参数 1就是周一,2就是周二,用代码验证过了.原创 2021-06-08 18:28:22 · 8420 阅读 · 5 评论 -
排序算法--冒泡排序
个人整理的冒泡排序算法/** * 冒泡排序 * * 从头比较相邻两个数,较大的在前的话与较小的互换 */ public static int[] test03(int[] a) { int temp = 0; for (int i = 0; i < a.length - 1; i++) { for (int j = 0; j < a.length -原创 2017-11-01 12:08:32 · 170 阅读 · 0 评论 -
java Date 日期 格式化
date 格式化 DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间。原创 2017-11-18 20:46:47 · 356 阅读 · 0 评论 -
StringUtils 判断字符串
import org.apache.commons.lang3.StringUtils;//empty 判断字符串是否不为空,空格不为空,""为空,null为空System.out.println(StringUtils.isEmpty(null));//trueSystem.out.println(StringUtils.isEmpty(""));//trueSy原创 2017-11-19 16:26:02 · 741 阅读 · 0 评论 -
javamail 发送邮件
发送送邮件的工具类package cn.bos.utils;import java.util.Properties;import javax.mail.Message;import javax.mail.Session;import javax.mail.Transport;import javax.mail.internet.InternetAddress;import ja原创 2017-11-20 21:24:13 · 206 阅读 · 0 评论 -
Codewars解题Are they the "same"?
题目 Given two arrays a and b write a function comp(a, b) (compSame(a, b) in Clojure) that checks whether the two arrays have the “same” elements, with the same multiplicities. “Same” means, her原创 2017-12-15 20:48:35 · 1325 阅读 · 0 评论 -
Codewars解题Sudoku Solution Validator数独校验
题目:数独解决方案验证器 Sudoku Background Sudoku is a game played on a 9x9 grid. The goal of the game is to fill all cells of the grid with digits from 1 to 9, so that each column, each row, and each原创 2017-12-15 21:42:05 · 1313 阅读 · 1 评论