Hola Santarshi Samanta,
Gracias por tu respuesta útil , intenté usar jxl.jar en mi aplicación de proyecto Java en mi escritorio, funciona bien al leer archivos de Excel (*.xls)
código: Workbook wb = Workbook.getWorkbook(new File("C:/Users/pcname/Desktop/AAAA.xls"));
Pero en el portal arroja la excepción "No se reconoce el flujo OLE"
código a continuación:
tipo de Va_Resource = com.sap.ide.webdynpro.uielementdefinitions.Resource
....
InputStream inpStr = null;
int temp = 0;
File file = new File(wdContext.currentContextElement().getVa_Resource().getResourceName().toString());
FileOutputStream opStr = new FileOutputStream(file);
if(wdContext.currentContextElement().getVa_Resource()!=null){
inpStr = wdContext.currentContextElement().getVa_Resource().read(false);
while((temp = inpStr.read())!= -1){
opStr.write(temp);
}
}
opStr.flush();
opStr.close();
path = file.getAbsolutePath();
if(path.substring(path.length()-3,path.length()).trim().equalsIgnoreCase("xls"))
{
//llamar método para subir
Execute_UploadOperation();
}
.....
public void Execute_UploadOperation{
try{
//path = /usr/sap/DEP/J00/j2ee/cluster/server0/AAAA.xls
Workbook wb = Workbook.getWorkbook(new File(path)); error en esta línea, lanza excepción aquí
....
}
catch (BiffException e)
{
e.getMessage() = jxl.read.biff.BiffException: No se reconoce el flujo OLE
}