support type 0x0204

This commit is contained in:
Liu Ming
2016-05-28 10:39:46 +08:00
parent 990d2cc41f
commit 06ae67f1d1
5 changed files with 75 additions and 31 deletions

View File

@@ -8,27 +8,58 @@ import (
)
func TestOpen(t *testing.T) {
xlFile, _ := Open("Table.xls", "")
sheet1 := xlFile.GetSheet(0)
fmt.Println(sheet1.Name)
fmt.Print(sheet1.Rows)
for k, row1 := range sheet1.Rows {
// row1 := sheet1.Rows[1]
fmt.Printf("\n[%d]", k)
for _, col1 := range row1.Cols {
// col1 := row1.Cols[0]
fmt.Print(col1.LastCol())
fmt.Print(" ")
if xlFile, err := Open("reportComuni.xls", "utf-8"); err == nil {
if sheet1 := xlFile.GetSheet(0); sheet1 != nil {
fmt.Println("Total Lines ", sheet1.MaxRow, sheet1.Name)
for i := 0; i < int(sheet1.MaxRow); i++ {
fmt.Printf("row %v point %v \n", i, sheet1.Rows[uint16(i)])
if sheet1.Rows[uint16(i)] == nil {
continue
}
row := sheet1.Rows[uint16(i)]
for n, col := range row.Cols {
fmt.Println(n, "==>", col.String(xlFile), " ")
}
// col1 := .Cols[0]
// col2 := sheet1.Rows[uint16(i)].Cols[1]
// fmt.Printf("\ncol1 %v \nCol2 %v \n", col1.String(xlFile), col2.String(xlFile))
}
}
}
}
func TestOpen1(t *testing.T) {
xlFile, _ := Open("000.xls", "")
for i := 0; i < xlFile.NumSheets(); i++ {
fmt.Println(xlFile.GetSheet(i).Name)
sheet := xlFile.GetSheet(i)
row := sheet.Rows[1]
for i, col := range row.Cols {
fmt.Println(i, col.String(xlFile))
}
}
// sheet1 := xlFile.GetSheet(0)
// fmt.Println(sheet1.Name)
// fmt.Print(sheet1.Rows)
// for k, row1 := range sheet1.Rows {
// // row1 := sheet1.Rows[1]
// fmt.Printf("\n[%d]", k)
// for _, col1 := range row1.Cols {
// // col1 := row1.Cols[0]
// fmt.Print(col1.LastCol())
// fmt.Print(" ")
// }
// }
}
func TestBof(t *testing.T) {
b := new(bof)
b.Id = 0x41E
b.Size = 55
buf := bytes.NewReader([]byte{0x07, 0x00, 0x19, 0x00, 0x01, 0x22, 0x00, 0xE5, 0xFF, 0x22, 0x00, 0x23, 0x00, 0x2C, 0x00, 0x23, 0x00, 0x23, 0x00, 0x30, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3B, 0x00, 0x22, 0x00, 0xE5, 0xFF, 0x22, 0x00, 0x5C, 0x00, 0x2D, 0x00, 0x23, 0x00, 0x2C, 0x20, 0x00})
new(WorkBook).parseBof(buf, b, b, 0)
wb := new(WorkBook)
wb.Formats = make(map[uint16]*Format)
wb.parseBof(buf, b, b, 0)
}
func TestMaxRow(t *testing.T) {