Go操作Excel表格

最近工作忙于作图,图表,经常和Excel打交道,这不要读写excel文件 。以前都是用Python,现在学习Go语言,刚好试试 。
要操作excel,自然需要找读写Excel的Package,前人栽好树,等我去乘凉 。
去哪里找合适的Package呢?
Go语言的包在 https://pkg.go.dev/ 。打开就能搜索 。这里录入关键字xlsx(如果需要读写xls则录入xls也可以) 。

Go操作Excel表格

文章插图
通过关键字找到需要的包
这里我们使用 github.com/tealeg/xlsx/v3
Go操作Excel表格

文章插图
xlsx 的v3版本
先点击Doc,看下文档 。
Go操作Excel表格

文章插图
Document 文档全面解释了包
func FileToSlice ¶func FileToSlice(path string, options ...FileOption) ([][][]string, error)A convenient wrApper around File.ToSlice, FileToSlice will return the raw data contained in an Excel XLSX file as three dimensional slice. The first index represents the sheet number, the second the row number, and the third the cell number.
这个函数可以直接打开一个表格文件,读取到一个3维切片中,第一维是sheet表,第二维是行,第三维是列 。非常简单方便 。
其实我比较讨厌这种包装,因为打开文件之后,何时关闭不受我控制 。
Go操作Excel表格

文章插图
这个错误就是表格文件打开后没有关闭,再次打开导致异常
For example:
var mySlice [][][]stringvar value stringmySlice = xlsx.FileToSlice("myXLSX.xlsx")value = https://www.isolves.com/it/cxkf/yy/go/2020-08-05/mySlice[0][0][0]//这就是 A1 了,简单吧value = mySlice[0][0][1]//这就是 A1 了,简单吧Here, value would be set to the raw value of the cell A1 in the first sheet in the XLSX file.
如果代码中需要遍历每一个sheet表格,需要range 循环
sheetsn := len(mySlice)//sheet 个数rows :=len(mySlice[0])//行数cols :=len(mySlice[0][0]) //列数怎么读excel文件表格内容?举个例子:
 
Go操作Excel表格

文章插图
准备读的文件
func xlxsreadtotable(pathname string){var mySlice [][][]stringvar err errormySlice ,err= xlsx.FileToSliceUnmerged(pathname)value := mySlice[0]sheetsn := len(mySlice)//sheet 个数rows :=len(mySlice[0])//行数cols :=len(mySlice[0][0]) //列数fmt.Println( value,err)fmt.Println( sheetsn,cols,rows)//表 行 列A1 := mySlice[0][0][0]//这就是 A1B1 := mySlice[0][0][1]//这就是 B1A2 := mySlice[0][1][0]//A2B2 := mySlice[0][1][1]//B2C1 := mySlice[0][0][2]//C1fmt.Println("A1:",A1,"A2:",A2,"B1:",B1,"B2:",B2,"C1:",C1)}
Go操作Excel表格

文章插图
 
运行结果:
Go操作Excel表格

文章插图
结果正确
如果使用OpenFile则代码会是这样:
func readxlsx(pathname string){wb, err := xlsx.OpenFile(pathname)if err != nil {panic(err)}// wb 引用 workbookfmt.Println("Sheets in this file:")for i, sh := range wb.Sheets {fmt.Println(i, sh.Name)}fmt.Println("----")}那怎么改写一个excel的内容呢?func editexlsx(pathname string){//改写一下某cellwb, _ := xlsx.OpenFile(pathname)cell ,_:= wb.Sheet["Sheet1"].Cell(3,3)cell.Value =https://www.isolves.com/it/cxkf/yy/go/2020-08-05/"改写D4"wb.Save(pathname)}运行结果:
Go操作Excel表格

文章插图
D4格子被改写成功
看文档还支持各种,表格格式,字体大小,文字颜色 。
func SetDefaultFont ¶ 设置字体和字体大小func SetDefaultFont(size float64, name string)func SkipEmptyCells ¶ 在Row.ForEachCell循环中跳过空cellfunc SkipEmptyCells(flags *cellVisitorFlags)SkipEmptyCells can be passed as an option to Row.ForEachCell in order to make it skip over empty cells in the sheet.
func SkipEmptyRows ¶ 同理也可跳过空行func SkipEmptyRows(flags *rowVisitorFlags)SkipEmptyRows can be passed to the Sheet.ForEachRow function to cause it to skip over empty Rows.
读写表格时,从表格得到时间需要用 TimeFromExcelTime()转换 。
写表格时,时间需要转换成excel时间 TimeToExcelTime() 。
如果表格超大,记得调用一下函数 UseDiskVCellStore(f *File)
如果表格较小,还可以全部放内存来加快表格处理,函数 UseMemoryCellStore(f *File) 。


推荐阅读