EasyXLS™ library allows you to convert Excel XLS file format to Excel XLSB 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 XLS file is imported and after that, the data is exported to XLSB file. Once the XLS 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 XLSB Excel file format.
// Create an instance of the class used to import/export Excel files
ExcelDocument workbook = new ExcelDocument();
// Import XLS file
workbook.easy_LoadXLSFile("C:\\Samples\\Excel.xls");
// Export XLSB file
workbook.easy_WriteXLSBFile("C:\\Samples\\Excel.xlsb");
' Create an instance of the class used to import/export Excel filesDim workbook As New ExcelDocument
' Import XLS file
workbook.easy_LoadXLSFile("C:\Samples\Excel.xls")
' Export XLSB file
workbook.easy_WriteXLSBFile("C:\Samples\Excel.xlsb")
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 XLS file
workbook->easy_LoadXLSFile("C:\\Samples\\Excel.xls");
// Export XLSB file
workbook->easy_WriteXLSBFile("C:\\Samples\\Excel.xlsb");
C++.NET// Create an instance of the class used to import/export Excel files
ExcelDocument ^workbook = gcnew ExcelDocument();
// Import XLS file
workbook->easy_LoadXLSFile("C:\\Samples\\Excel.xls");
// Export XLSB file
workbook->easy_WriteXLSBFile("C:\\Samples\\Excel.xlsb");
// Create an instance of the class used to import/export Excel files
ExcelDocument workbook = new ExcelDocument();
// Import XLS file
workbook.easy_LoadXLSFile("C:\\Samples\\Excel.xls");
// Export XLSB file
workbook.easy_WriteXLSBFile("C:\\Samples\\Excel.xlsb");
.NET:// Create an instance of the class used to import/export Excel files
$workbook = new COM("EasyXLS.ExcelDocument");
// Import XLS file
$workbook->easy_LoadXLSFile("C:\Samples\Excel.xls");
// Export XLSB file
$workbook->easy_WriteXLSBFile("C:\Samples\Excel.xlsb");
Java:// Create an instance of the class used to import/export Excel files
$workbook = new java("EasyXLS.ExcelDocument");
// Import XLS file
$workbook->easy_LoadXLSFile("C:\Samples\Excel.xls");
// Export XLSB file
$workbook->easy_WriteXLSBFile("C:\Samples\Excel.xlsb");
' Create an instance of the class used to import/export Excel filesset workbook = Server.CreateObject("EasyXLS.ExcelDocument")
' Import XLS file
workbook.easy_LoadXLSFile("C:\Samples\Excel.xls")
' Export XLSB file
workbook.easy_WriteXLSBFile("C:\Samples\Excel.xlsb")
' Create an instance of the class used to import/export Excel filesSet workbook = CreateObject("EasyXLS.ExcelDocument")
' Import XLS file
workbook.easy_LoadXLSFile("C:\Samples\Excel.xls")
' Export XLSB file
workbook.easy_WriteXLSBFile("C:\Samples\Excel.xlsb")
' Create an instance of the class used to import/export Excel filesset workbook = CreateObject("EasyXLS.ExcelDocument")
' Import XLS file
workbook.easy_LoadXLSFile("C:\Samples\Excel.xls")
' Export XLSB file
workbook.easy_WriteXLSBFile("C:\Samples\Excel.xlsb")
<!-- Create an instance of the class used to import/export Excel files --><cfobject type="java"class="EasyXLS.ExcelDocument"name="workbook"action="CREATE"><!-- Import XLS file --><cfset ret = workbook.easy_LoadXLSFile("C:\Samples\Excel.xls")><!-- Export XLSB file --><cfset ret = workbook.easy_WriteXLSBFile("C:\Samples\Excel.xlsb")>
.NET:# Create an instance of the class used to import/export Excel files
workbook = ExcelDocument()
# Import XLS file
workbook.easy_LoadXLSFile("C:\\Samples\\Excel.xls")
# Export XLSB file
workbook.easy_WriteXLSBFile("C:\\Samples\\Excel.xlsb")
Java:# Create an instance of the class used to import/export Excel files
workbook = gateway.jvm.ExcelDocument()
# Import XLS file
workbook.easy_LoadXLSFile("C:\\Samples\\Excel.xls")
# Export XLSB file
workbook.easy_WriteXLSBFile("C:\\Samples\\Excel.xlsb")
Convert between Excel file formats
EasyXLS also allows you to convert between other Excel file formats including XLSX, XLS, XLSB or XLSM files.