摘要: https://studygolang.com/articles/12226?fr=sidebar 阅读全文
posted @ 2018-01-18 20:44 失落的黎明 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: package main import ( "bufio" //缓存IO "fmt" "io" "io/ioutil" //io 工具包 "os" ) func check(e error) { if e != nil { panic(e) } } /** * 判断文件是否存在 存在返回 true 不存在返回false */ func checkFileIsExis... 阅读全文
posted @ 2018-01-18 20:40 失落的黎明 阅读(14431) 评论(0) 推荐(1) 编辑
摘要: Cron表达式是一个字符串,字符串以5或6个空格隔开,分为6或7个域,每一个域代表一个含义,Cron有如下两种语法格式: Seconds Minutes Hours DayofMonth Month DayofWeek Year 或: Seconds Minutes Hours DayofMonth 阅读全文
posted @ 2018-01-18 16:07 失落的黎明 阅读(8784) 评论(0) 推荐(0) 编辑