<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web development helpdesk &#187; zip</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/zip/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Unzip a file using Java</title>
		<link>http://helpdesk.objects.com.au/java/unzip-a-file-using-java?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=unzip-a-file-using-java</link>
		<comments>http://helpdesk.objects.com.au/java/unzip-a-file-using-java#comments</comments>
		<pubDate>Thu, 26 May 2011 02:28:47 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[decompress]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[unzip]]></category>
		<category><![CDATA[zip]]></category>
		<category><![CDATA[ZipInputStream]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1855</guid>
		<description><![CDATA[Java provides the ZipInputStream class for reading from a zip file. Heres a general example of its usage File file = new File(&#34;my.zip&#34;); ZipInputStream zin = new ZipInputStream(new FileInputStream(file)); ZipEntry ze = null; while ((ze = zin.getNextEntry()) != null) { String filename = ze.getName(); if (!ze.isDirectory()) { // Read file contents from &#039;zin&#039; // For [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/unzip-a-file-using-java/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a zip file containing an array of files</title>
		<link>http://helpdesk.objects.com.au/java/how-to-create-a-zip-file-containing-an-array-of-files?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-create-a-zip-file-containing-an-array-of-files</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-create-a-zip-file-containing-an-array-of-files#comments</comments>
		<pubDate>Tue, 14 Apr 2009 02:55:17 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[zip]]></category>
		<category><![CDATA[ZipOutputStream]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=913</guid>
		<description><![CDATA[// Create the ZIP file ZipOutputStream out = new ZipOutputStream(new FileOutputStream(&#34;my.zip&#34;)); // loop through the files to add to zip for (int i=0; i&#60;filenames.length; i++) { // open file FileInputStream in = new FileInputStream(filenames[i]); // Add new entry to zip out.putNextEntry(new ZipEntry(filenames[i])); // copy file to zip // see http://helpdesk.objects.com.au/java/how-do-i-copy-one-stream-to-another-using-java int len; while ((len = [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-create-a-zip-file-containing-an-array-of-files/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invalid CEN header</title>
		<link>http://helpdesk.objects.com.au/java/invalid-cen-header?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=invalid-cen-header</link>
		<comments>http://helpdesk.objects.com.au/java/invalid-cen-header#comments</comments>
		<pubDate>Sat, 13 Dec 2008 05:25:26 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[zip]]></category>
		<category><![CDATA[zip64]]></category>
		<category><![CDATA[ZipEntry]]></category>
		<category><![CDATA[ZipFile]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=655</guid>
		<description><![CDATA[If you get the following error when trying to read a valid zip file using Java it may be because it contains an entry larger than 4gb. java.util.zip.ZipException: invalid CEN header Java&#8217;s implementation of Java only support entries smaller than 4gb. To read a zip file that contains entries larger than 4gb you will need [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/invalid-cen-header/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

