Is there a way to reliably export a workbook to an XML stream and import it back without loosing any of the original attributes and data ?
thanks ahead
Is there a way to reliably export a workbook to an XML stream and import it back without loosing any of the original attributes and data ?
thanks ahead
Hi,
Well, you may save the workbook to xml (SpreadsheetML file) and can import/open the file back too.
See the following save method version for Workbook:save(java.io.OutputStream stream,
int fileFormatType)
Also, see the following open method version for Workbook:
open(java.io.InputStream stream,
int fileFormatType)
See some documents for reference:
http://www.aspose.com/documentation/java-components/aspose.cells-for-java/saving-files.html
http://www.aspose.com/documentation/java-components/aspose.cells-for-java/opening-files.html
Thank you.
Thanks so much, again
oh, sorry. guess your response took a while to really sink in