Normal
[code]HSSFRow row = sheet.createRow(spalte);HSSFCell cell = row.createCell(zeile);[/code]muß das nicht eigentlich so sein:[code]HSSFRow row = sheet.createRow(zeile);HSSFCell cell = row.createCell(spalte);[/code]Kann POI schon mit int? Ich mußte damals immer noch nach short casten, oder gleich short nutzen.
[code]
HSSFRow row = sheet.createRow(spalte);
HSSFCell cell = row.createCell(zeile);
[/code]
muß das nicht eigentlich so sein:
HSSFRow row = sheet.createRow(zeile);
HSSFCell cell = row.createCell(spalte);
Kann POI schon mit int? Ich mußte damals immer noch nach short casten, oder gleich short nutzen.