public class Read {
public static void main(String [] args) throws Exception{
File f = new File ("/users/Me/Documents/Test.xls");
Workbook wb = Workbook.getWorkbook(f);
Sheet s = wb.getSheet(0);
int row = s.getRows();
int col = s.getColumns();
//for(int i = 0; i<row;i++){
//for(int j = 0; j<col;j++){
Cell c = s.getCell(4,1);
Cell e = s.getCell(5,1);
System.out.print(c.getContents()+"\t");
System.out.print(e.getContents()+"\t");
// }
//}
System.out.println("");
}
public class Read {
public static void main(Str