To download the trial version of EasyXLS Excel Library, press the below button:
If you already own a license key, you may login and download EasyXLS from your account.
Install the downloaded EasyXLS installer for v8.6 or earlier.
Step 2: License file setup
Step required for EasyXLS v9.0 or later.
If you are using a trial, generate a trial license file from EasyXLS trials page. The trial license is valid for 30-days.
If you own a license key, you may login to the account that purchased the license and generate the license file from: https://www.easyxls.com/my-orders
Setup the license file into your project using these guidelines.
Step 3: Add EasyXLS library to CLASSPATH in ColdFusion Administator
EasyXLS.jar must be included to class path for Java runtime environment.
EasyXLS.jar can be found: - Inside the downloaded archive at Step 1 for EasyXLS v9.0 or later - Under installation path for EasyXLS v8.6 or earlier, in "Lib" folder.
Another solution is to add EasyXLS.jar to "lib" folder from ColdFusion installation path.
Step 4: Run ColdFusion code that exports List to Excel
Execute the following ColdFusion code that exports List to Excel.
<!--
===================================================================
Tutorial 01
This tutorial shows how to export list to Excel file in Coldfusion.
The list contains data from a SQL database.
The cells are formatted using a predefined format.
===================================================================
--><!-- Constants Classes --><cfobject type="java"class="EasyXLS.Constants.Styles"name="Styles"action="CREATE">
Tutorial 01<br>
----------<br><!-- Create an instance of the class that exports Excel files --><cfobjecttype="java"class="EasyXLS.ExcelDocument"name="workbook"action="CREATE"><!-- Query the database --><cfqueryname="myQuery"datasource="northwind">
SELECT TOP 100 CAST(Month(ord.OrderDate) AS varchar) + '/' + CAST(Day(ord.OrderDate) AS varchar) +
'/' + CAST(year(ord.OrderDate) AS varchar) AS 'Order_Date',
P.ProductName AS 'Product_Name', O.UnitPrice AS Price, O.Quantity,
O.UnitPrice * O. Quantity AS Value
FROM Orders AS ord, [Order Details] AS O, Products AS P
WHERE O.ProductID = P.ProductID AND O.OrderID = ord.OrderID
</cfquery><!-- Create the list that stores the query values --><cfobjecttype="java"class="EasyXLS.Util.List"name="lstRows"action="CREATE"><!-- Add the report header row to the list --><cfobjecttype="java"class="EasyXLS.Util.List"name="lstHeaderRow"action="CREATE"><cfset lstHeaderRow.addElement("Order Date")><cfset lstHeaderRow.addElement("Product Name")><cfset lstHeaderRow.addElement("Price")><cfset lstHeaderRow.addElement("Quantity")><cfset lstHeaderRow.addElement("Value")><cfset lstRows.addElement(lstHeaderRow)><!-- Add the query values from the database to the list --><cfloopquery="myQuery"><cfobjecttype="java"class="EasyXLS.Util.List"name="RowList"action="CREATE"><cfset RowList.addElement(#Order_Date#)><cfset RowList.addElement(#Product_Name#)><cfset RowList.addElement(#Price#)><cfset RowList.addElement(#Quantity#)><cfset RowList.addElement(#Value#)><cfset lstRows.addElement(RowList)></cfloop><!-- Create an instance of the class used to format the cells --><cfobjecttype="java"class="EasyXLS.ExcelAutoFormat"name="xlsAutoFormat"action="CREATE"><cfset xlsAutoFormat.InitAs(Styles.AUTOFORMAT_EASYXLS1)><!-- Export list to Excel file -->
Writing file C:\Samples\Tutorial01 - export List to Excel.xlsx<br><cfset ret = workbook.easy_WriteXLSXFile_FromList(
"C:\Samples\Tutorial01 - export List to Excel.xlsx", lstRows, xlsAutoFormat, "Sheet1")><!-- Confirm export of Excel file --><cfset sError = workbook.easy_getError()><cfif (sError is"")><cfoutput>
File successfully created.
</cfoutput><cfelse>>
<cfoutput>
Error encountered: #sError#
</cfoutput></cfif><!-- Dispose memory --><cfsetworkbook.Dispose()>