Apache POI - JAVA - iterating over columns in excel
问题 new to java here. I'm working on a code that reads excel files (looking at cells in columns) and then writes something that looks like the following tables: I have an excel file that looks like this: col1 col2 col3 col4 ----------------------------- row1 | 2,3,1 _ 1 w row2 | 3,2,7 _ 2 x row3 | _ _ 3 y row4 | 4,9 _ 4 z I'm writing some values (using XLWT) in column 2 that look like this: col1 col2 col3 col4 ----------------------------- row1 | 2,3,1 x,y,w 1 w row2 | 3,2,7 y,x 2 x row3 | _ _ 3