英文:
How to read an excel file in go?
问题
我是Go语言的新手。我想读取一个Excel文件以后进行处理,但是我不知道如何在Go中读取文件。有人可以给我一个例子吗?
英文:
I'm new on the go lang.I want to read an excel file for procees it later, but I don't know how to read the file in go? Anyone can show me an example ?
答案1
得分: 17
我还没有尝试过,但有一个xlsx包。
使用以下命令安装它:
go get -v github.com/tealeg/xlsx
阅读文档,如果遇到问题,请回到这里并提供一些你尝试过的代码。
英文:
I haven't tried it but there's an xlsx package.
Install it with
go get -v github.com/tealeg/xlsx
Read the documentation and come back here with some code you've tried if you get stuck.
答案2
得分: 2
go-ole
包似乎是一个不错的选择,如果你想通过COM驱动Excel进程来读取你的文件。
英文:
The go-ole
package looks like a way to go if you want to drive an Excel process via COM to read your file.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论