-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
157 lines (148 loc) · 3.25 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//package main
//
////import (
//// _ "beegoWeb/routers"
//// beego "github.com/beego/beego/v2/server/web"
//// "github.com/beego/beego/v2/server/web/filter/cors"
////)
//
////func main() {
//// beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
//// AllowAllOrigins: true,
//// AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
//// AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin"},
//// ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin"},
//// AllowCredentials: true,
//// }))
////
//// beego.Run()
////}
//
//import (
// "fmt"
// "log"
// "os"
// "path/filepath"
// "time"
//
// "github.com/xuri/excelize/v2"
//)
//
//// listExcelSheets 打开Excel文件并列出所有Sheet的名称
//func listExcelSheets(filePath string) {
// f, err := excelize.OpenFile(filePath)
// if err != nil {
// log.Printf("无法打开文件 '%s': %v\n", filePath, err)
// return
// }
// defer f.Close()
//
// sheets := f.GetSheetList()
// fmt.Printf("文件: %s\n", filePath)
// fmt.Println("包含的Sheets:")
// for _, sheet := range sheets {
// fmt.Printf("- %s\n", sheet)
// }
// fmt.Println()
//}
//
//// walkExcelFiles 遍历指定目录及子目录,寻找Excel文件
//func walkExcelFiles(rootPath string) {
// err := filepath.Walk(rootPath, func(path string, info os.FileInfo, err error) error {
// if err != nil {
// log.Printf("访问文件失败 '%s': %v\n", path, err)
// return err
// }
// if !info.IsDir() && (filepath.Ext(path) == ".xlsx" || filepath.Ext(path) == ".xls") {
// listExcelSheets(path)
// }
// return nil
// })
//
// if err != nil {
// log.Printf("遍历目录失败 '%s': %v\n", rootPath, err)
// }
//}
//
//func main() {
// // 需要遍历的目录路径,根据需要进行修改
// rootPath := "D:\\elex\\slgconfiguration\\excel"
//
// walkExcelFiles(rootPath)
//}
//package main
//
//import (
// "fmt"
// "time"
//)
//
//func main() {
// // 使用time.AfterFunc
// timer := time.AfterFunc(2*time.Second, func() {
// fmt.Println("Timer expired")
// })
//
// // 为了看到定时器到期的效果,这里等待一段时间
// time.Sleep(3 * time.Second)
//
// // 停止定时器(如果它还没过期的话)
// timer.Stop()
//}
//package main
//
//import (
// "fmt"
// "testing"
// "time"
//)
//
//func main() {
// ticker := time.NewTicker(1 * time.Second)
// defer ticker.Stop() // 程序结束时停止定时器
//
// for i := 0; i < 5; i++ {
// <-ticker.C // 等待定时器的下一个滴答
// fmt.Println("Tick")
// }
//}
//package main
//
//import (
// "fmt"
// "time"
//)
//
//func main() {
// // 创建一个打点器,每5秒触发一次
// ticker := time.NewTicker(5 * time.Second)
// defer ticker.Stop() // 当不再需要打点器时确保能够停止它
//
// for {
// select {
// case <-ticker.C:
// // 每5秒会执行到这里
// fmt.Println("Hello World")
// }
// }
//}
package main
import (
"fmt"
"github.com/robfig/cron/v3"
)
func main() {
c := cron.New()
// 每5秒执行一次
_, err := c.AddFunc("*/1 * * * *", func() {
fmt.Println("Hello World")
})
if err != nil {
fmt.Println("Error scheduling a job:", err)
return
}
// 开始执行定时器
c.Start()
// 防止主程序立即结束,使用select{}无限等待
select {}
}