ColdFusion Component Wrapper For POI To Read And Write Excel Files

<!---
	Read in only the Lunch sheet. This is the seocnd Sheet
	of the Excel file, but since Java is ZERO-based, we are
	going to request the first sheet. This will return a
	Sheet object rather than an array of Sheet objects.
--->
<cfset objSheet = objPOIUtility.ReadExcel(
	FilePath = strFilePath,
	HasHeaderRow = true,
	SheetIndex = 1
	) />

For Cut-and-Paste