打开

  1. func OpenFile(filename string, opts ...Options) (*File, error)

使用 OpenFile 打开已有 Excel 文档。例如,打开带有密码保护的电子表格文档:

  1. f, err := excelize.OpenFile("Book1.xlsx", excelize.Options{Password: "password"})
  2. if err != nil {
  3. return
  4. }

使用 Close() 关闭已打开的工作簿。