iSeries - Opening workbook

We are trying to open a workbook from the iSeries IFS which results in a file not found exception. We are using the following methods:

Workbook workbook = new Workbook();

// Open work book
FileInputStream fstream = new FileInputStream("/pivottable/SourceData.xls");
workbook.open(fstream);

…and

workbook.open("/pivottable/SourceData.xls");

Do we need to use a special method on the iSeries?

Thanks
Paul

Hi,

It should work fine on iSeries systems, anyways, we will check and get back to you soon.

By the way, could you try reading/opening test files from the location by simply using JDK API (e.g using… File, FileInputStream, BufferedInputStream, DataInputStream APIs etc. ) only and without involving/using Aspose.Cells for Java API e.g Workbook.open() method to check if it works fine.

Thank you.