How To Read Excel File Using Jxl 2.6.12 Jar
When I am adding jxl.jar in my eclipse project, it saw convertion error to dalvik format into the console. Error display in console: [2010-08-02 19:11:22 - TestApp] trouble writing
Solution 1:
CellType type = cell.getType();
if (cell.getType() == cell.LABEL) {
System.out.println("I got a label " + cell.getContents());
}
if (cell.getType() == cell.NUMBER) {
System.out.println("I got a number " + cell.getContents());
}
USE cell
NOT CellType
.
Post a Comment for "How To Read Excel File Using Jxl 2.6.12 Jar"