@@ -48,8 +48,8 @@ type Cols struct {
48
48
// return
49
49
// }
50
50
// for _, col := range cols {
51
- // for _, colCell := range col {
52
- // fmt.Println(colCell , "\t")
51
+ // for _, rowCell := range col {
52
+ // fmt.Print(rowCell , "\t")
53
53
// }
54
54
// fmt.Println()
55
55
// }
@@ -99,24 +99,34 @@ func (cols *Cols) Rows() ([]string, error) {
99
99
switch startElement := token .(type ) {
100
100
case xml.StartElement :
101
101
inElement = startElement .Name .Local
102
+ if inElement == "row" {
103
+ cellCol = 0
104
+ cellRow ++
105
+ for _ , attr := range startElement .Attr {
106
+ if attr .Name .Local == "r" {
107
+ cellRow , _ = strconv .Atoi (attr .Value )
108
+ }
109
+ }
110
+ }
102
111
if inElement == "c" {
112
+ cellCol ++
103
113
for _ , attr := range startElement .Attr {
104
114
if attr .Name .Local == "r" {
105
115
if cellCol , cellRow , err = CellNameToCoordinates (attr .Value ); err != nil {
106
116
return rows , err
107
117
}
108
- blank := cellRow - len (rows )
109
- for i := 1 ; i < blank ; i ++ {
110
- rows = append (rows , "" )
111
- }
112
- if cellCol == cols .curCol {
113
- colCell := xlsxC {}
114
- _ = decoder .DecodeElement (& colCell , & startElement )
115
- val , _ := colCell .getValueFrom (cols .f , d )
116
- rows = append (rows , val )
117
- }
118
118
}
119
119
}
120
+ blank := cellRow - len (rows )
121
+ for i := 1 ; i < blank ; i ++ {
122
+ rows = append (rows , "" )
123
+ }
124
+ if cellCol == cols .curCol {
125
+ colCell := xlsxC {}
126
+ _ = decoder .DecodeElement (& colCell , & startElement )
127
+ val , _ := colCell .getValueFrom (cols .f , d )
128
+ rows = append (rows , val )
129
+ }
120
130
}
121
131
}
122
132
}
@@ -152,10 +162,10 @@ func (f *File) Cols(sheet string) (*Cols, error) {
152
162
f .saveFileList (name , replaceRelationshipsNameSpaceBytes (output ))
153
163
}
154
164
var (
155
- inElement string
156
- cols Cols
157
- cellCol int
158
- err error
165
+ inElement string
166
+ cols Cols
167
+ cellCol , curRow , row int
168
+ err error
159
169
)
160
170
cols .sheetXML = f .readXML (name )
161
171
decoder := f .xmlNewDecoder (bytes .NewReader (cols .sheetXML ))
@@ -168,25 +178,30 @@ func (f *File) Cols(sheet string) (*Cols, error) {
168
178
case xml.StartElement :
169
179
inElement = startElement .Name .Local
170
180
if inElement == "row" {
181
+ row ++
171
182
for _ , attr := range startElement .Attr {
172
183
if attr .Name .Local == "r" {
173
- if cols . totalRow , err = strconv .Atoi (attr .Value ); err != nil {
184
+ if curRow , err = strconv .Atoi (attr .Value ); err != nil {
174
185
return & cols , err
175
186
}
187
+ row = curRow
176
188
}
177
189
}
190
+ cols .totalRow = row
191
+ cellCol = 0
178
192
}
179
193
if inElement == "c" {
194
+ cellCol ++
180
195
for _ , attr := range startElement .Attr {
181
196
if attr .Name .Local == "r" {
182
197
if cellCol , _ , err = CellNameToCoordinates (attr .Value ); err != nil {
183
198
return & cols , err
184
199
}
185
- if cellCol > cols .totalCol {
186
- cols .totalCol = cellCol
187
- }
188
200
}
189
201
}
202
+ if cellCol > cols .totalCol {
203
+ cols .totalCol = cellCol
204
+ }
190
205
}
191
206
}
192
207
}
0 commit comments