Hi wieso erfolgt bei x Werten über 4 nur noch die obere Zeile als Ausgabe?
Excel sieht dabei so aus:
TI TD TS TC
1 0,1 eins e
1000 0,001 tausend t
1000000 0 million m
Code:
import java.io.File;
import jxl.*;
public class JavaExel {
public static void main(String[] args) {
try {
int x=4;
int y=10;
Workbook workbook = Workbook.getWorkbook(new File("test.xls"));
Sheet sheet = workbook.getSheet(0);
Cell zelle;
for(int i=0;i<y;++i){
for(int j=0;j<x;++j){
zelle=sheet.getCell(j,i);
System.out.print(zelle.getContents()+"\t");
}
System.out.println();
}
workbook.close();
} catch (Exception e) {
}
}
}
Excel sieht dabei so aus:
TI TD TS TC
1 0,1 eins e
1000 0,001 tausend t
1000000 0 million m