<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Convert an ArrayList to an Array in Java</title>
	<atom:link href="http://code.hammerpig.com/convert-an-arraylist-to-an-array-in-java.html/feed" rel="self" type="application/rss+xml" />
	<link>http://code.hammerpig.com/convert-an-arraylist-to-an-array-in-java.html</link>
	<description>Tips and short tutorials on various programming technologies</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:17:05 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: um</title>
		<link>http://code.hammerpig.com/convert-an-arraylist-to-an-array-in-java.html/comment-page-1#comment-1051</link>
		<dc:creator>um</dc:creator>
		<pubDate>Sat, 12 Nov 2011 22:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://code.hammerpig.com/?p=256#comment-1051</guid>
		<description>thanks !</description>
		<content:encoded><![CDATA[<p>thanks !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://code.hammerpig.com/convert-an-arraylist-to-an-array-in-java.html/comment-page-1#comment-780</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 21 May 2011 21:59:47 +0000</pubDate>
		<guid isPermaLink="false">http://code.hammerpig.com/?p=256#comment-780</guid>
		<description>public static Integer[] ConvertToIntegerArray(ArrayList list)
{
    return (Integer[])list.toArray(new Integer[0]);
}

Does that work?</description>
		<content:encoded><![CDATA[<p>public static Integer[] ConvertToIntegerArray(ArrayList list)<br />
{<br />
    return (Integer[])list.toArray(new Integer[0]);<br />
}</p>
<p>Does that work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://code.hammerpig.com/convert-an-arraylist-to-an-array-in-java.html/comment-page-1#comment-779</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Fri, 20 May 2011 14:56:48 +0000</pubDate>
		<guid isPermaLink="false">http://code.hammerpig.com/?p=256#comment-779</guid>
		<description>What would the Integer example look like? I tired making my own version with little success.</description>
		<content:encoded><![CDATA[<p>What would the Integer example look like? I tired making my own version with little success.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

