如何在Go中修复“ zip:不是有效的zip文件”错误?

时间:2019-04-24 14:28:04

标签: go

我是Golang的新手。我使用a link来读取xlsx文件:

    filePath := "controllers\\foo.xlsx"
xlFile, err := xlsx.OpenFile(filePath)
if err != nil {
    log.Fatal(err)
}

我的程序在窗口os上运行。 预先感谢。

1 个答案:

答案 0 :(得分:0)

使用这个:

    file, fileHeader, err := req.FormFile("theAttachmentfile")

    if err != nil {
      do what you wanna do
    }

    xlsx, err := excelize.OpenReader(file)
    if err != nil {
      do what you wanna do
    }