EasyXLS™ library allows you to convert Excel XLSB file format to Excel XLS file format.
EasyXLS can be successfully used inclusively to convert large Excel files having big volume of data with fast converting time.
EasyXLS permits you to convert Excel files without Excel installed, without Interop or any other additional software installed.
The conversion is made in two steps. First, the XLSB file is imported and after that, the data is exported to XLS file. Once the XLSB was loaded in memory, optionally, the user can process data, add more features (like formulas, cell formatting, comments, hyperlinks, images, data validations, page setup, charts, and so on) and save the file back in XLS Excel file format.
// Create an instance of the class used to import/export Excel files
ExcelDocument workbook = new ExcelDocument();
// Import XLSB file
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
// Export XLS file
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls");
' Create an instance of the class used to import/export Excel filesDim workbook As New ExcelDocument
' Import XLSB file
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
' Export XLS file
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
C++// Create an instance of the class used to import/export Excel files
EasyXLS::IExcelDocumentPtr workbook;
hr = CoCreateInstance(__uuidof(EasyXLS::ExcelDocument),
NULL,
CLSCTX_ALL,
__uuidof(EasyXLS::IExcelDocument),
(void**) &workbook) ;
// Import XLSB file
workbook->easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
// Export XLS file
workbook->easy_WriteXLSFile("C:\\Samples\\Excel.xls");
C++.NET// Create an instance of the class used to import/export Excel files
ExcelDocument ^workbook = gcnew ExcelDocument();
// Import XLSB file
workbook->easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
// Export XLS file
workbook->easy_WriteXLSFile("C:\\Samples\\Excel.xls");
// Create an instance of the class used to import/export Excel files
ExcelDocument workbook = new ExcelDocument();
// Import XLSB file
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb");
// Export XLS file
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls");
.NET:// Create an instance of the class used to import/export Excel files
$workbook = new COM("EasyXLS.ExcelDocument");
// Import XLSB file
$workbook->easy_LoadXLSBFile("C:\Samples\Excel.xlsb");
// Export XLS file
$workbook->easy_WriteXLSFile("C:\Samples\Excel.xls");
Java:// Create an instance of the class used to import/export Excel files
$workbook = new java("EasyXLS.ExcelDocument");
// Import XLSB file
$workbook->easy_LoadXLSBFile("C:\Samples\Excel.xlsb");
// Export XLS file
$workbook->easy_WriteXLSFile("C:\Samples\Excel.xls");
' Create an instance of the class used to import/export Excel filesset workbook = Server.CreateObject("EasyXLS.ExcelDocument")
' Import XLSB file
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
' Export XLS file
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
' Create an instance of the class used to import/export Excel filesSet workbook = CreateObject("EasyXLS.ExcelDocument")
' Import XLSB file
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
' Export XLS file
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
' Create an instance of the class used to import/export Excel filesset workbook = CreateObject("EasyXLS.ExcelDocument")
' Import XLSB file
workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")
' Export XLS file
workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")
<!-- Create an instance of the class used to import/export Excel files --><cfobject type="java"class="EasyXLS.ExcelDocument"name="workbook"action="CREATE"><!-- Import XLSB file --><cfset ret = workbook.easy_LoadXLSBFile("C:\Samples\Excel.xlsb")><!-- Export XLS file --><cfset ret = workbook.easy_WriteXLSFile("C:\Samples\Excel.xls")>
.NET:# Create an instance of the class used to import/export Excel files
workbook = ExcelDocument()
# Import XLSB file
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb")
# Export XLS file
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls")
Java:# Create an instance of the class used to import/export Excel files
workbook = gateway.jvm.ExcelDocument()
# Import XLSB file
workbook.easy_LoadXLSBFile("C:\\Samples\\Excel.xlsb")
# Export XLS file
workbook.easy_WriteXLSFile("C:\\Samples\\Excel.xls")
Convert between Excel file formats
EasyXLS also allows you to convert between other Excel file formats including XLSX, XLS, XLSB or XLSM files.