golang导出Excel表格

Posted zhzhlong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang导出Excel表格相关的知识,希望对你有一定的参考价值。

设置样式:

package main

import (
    "github.com/tealeg/xlsx"
    "fmt"
)

func main() {
    var file *xlsx.File
    var sheet *xlsx.Sheet
    var row *xlsx.Row
    var cell *xlsx.Cell
    var err error

    style := xlsx.NewStyle()

    fill := *xlsx.NewFill("solid", "00FF0000", "FF000000")
    font := *xlsx.NewFont(20, "Verdana")
    border := *xlsx.NewBorder("thin", "thin", "thin", "thin")

    style.Fill = fill
    style.Font = font
    style.Border = border

    style.ApplyFill = true
    style.ApplyFont = true
    style.ApplyBorder = true

    file = xlsx.NewFile()
    sheet,_ = file.AddSheet("SheetName")
    row = sheet.AddRow()

    cell = row.AddCell()
    cell.Value = "100000"
    cell.SetStyle(style)

    cell = row.AddCell()
    cell.Value = "test"

    err = file.Save("test.xlsx")
    if err != nil {
        fmt.Printf(err.Error())
    }
}

 

发送到浏览器: https://blog.csdn.net/niechaoya/article/details/46470715

 

想法: 先把数据组织成一个二维数组 [ [ua ua ua  ub ub ub  uc uc  uc ]    []    []     ]   用swith

以上是关于golang导出Excel表格的主要内容,如果未能解决你的问题,请参考以下文章

vue项目中如何把表格导出excel表格

java如何导出excel表格,如果用poi,java代码如何实现.,求代码!!!

由Excel表格导出Latex代码

Java 利用poi 导出excel表格 如何在导出时自由选择路径?

java端导出Excel表格。

asp导出数据到EXCEL表格