Update README.md

Adding more realistic error handling in examples
This commit is contained in:
Steve H 2016-10-17 19:32:43 -04:00 committed by GitHub
parent 051fc18a3a
commit 2ebf988401
1 changed files with 8 additions and 1 deletions

View File

@ -30,6 +30,8 @@ package main
import (
"fmt"
"os"
"github.com/Luxurioust/excelize"
)
@ -37,6 +39,7 @@ func main() {
xlsx, err := excelize.CreateFile()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
xlsx.NewSheet(2, "Sheet2")
xlsx.NewSheet(3, "Sheet3")
@ -45,6 +48,7 @@ func main() {
err = xlsx.WriteTo("/home/Workbook.xlsx")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
```
@ -65,6 +69,7 @@ func main() {
xlsx, err := excelize.OpenFile("/home/Workbook.xlsx")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
xlsx.SetCellInt("Sheet2", "B2", 100)
xlsx.SetCellStr("Sheet2", "C11", "Hello")
@ -75,6 +80,7 @@ func main() {
err = xlsx.Save()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
```
@ -93,6 +99,7 @@ func main() {
xlsx, err := excelize.OpenFile("/home/Workbook.xlsx")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
cell := xlsx.GetCellValue("Sheet2", "D11")
fmt.Println(cell)
@ -109,4 +116,4 @@ Some struct of XML originally by [tealeg/xlsx](https://github.com/tealeg/xlsx).
## Licenses
This program is under the terms of the BSD 3-Clause License. See [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause).
This program is under the terms of the BSD 3-Clause License. See [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause).