I am new to selenium . I am able to get the data from excel sheet using .jxl jar
but unable to update the result into same excel sheet. So kindly help me with this issue.
Thank you in advance.
I am new to selenium . I am able to get the data from excel sheet using .jxl jar
but unable to update the result into same excel sheet. So kindly help me with this issue.
Thank you in advance.
"xls" is a format of Excel 2007 which consist of binary BIFF data in an Object Linking and Embedding(OLE) container . The xlsx is a later format which is comprised of XML files in a zip container.The Java Excel API only deals with the first format so it throws an exception when it doesn't encounter an OLE container.
So if you use .poi API, which is a better tool than .jxl API that handles excel in a better way you problem might be solved.