ColdFusion CFFile vs. Java java.io.BufferedOutputStream

<!--- Create an array of data to choose from. --->
<cfset arrParts = ArrayNew( 1 ) />
 
<!--- Add data to the array. --->
<cfset arrParts[ 1 ] = "Feet" />
<cfset arrParts[ 2 ] = "Calves" />
<cfset arrParts[ 3 ] = "Thighs" />
<cfset arrParts[ 4 ] = "Hips" />
<cfset arrParts[ 5 ] = "Bottom" />
<cfset arrParts[ 6 ] = "Boobs" />
<cfset arrParts[ 7 ] = "Eyes" />
 
<!--- 
	Set the number of iterations. This is the number of lines
	of text that we will end up writing to file.
--->
<cfset intIterations = 100000 />

For Cut-and-Paste