<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Doc</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>Recent changes to Doc</description><atom:link href="https://sourceforge.net/p/effy/wiki/Doc/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 13 Feb 2015 10:27:04 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/effy/wiki/Doc/feed" rel="self" type="application/rss+xml"/><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v9
+++ v10
@@ -19,4 +19,11 @@
 ZipUtils zipUtil = new ZipUtils();
 zipUtil.unzip("C:/anil/misc/temp/anikl.zip");
 
+
+### Compress file into zip with highest compression.
+If the need is to create smallest zip file for a give file, please use the below implementation. This will compress file myFile.xlsx and write it to to the below temp folder. 
+&lt;tt&gt;
+ZipUtils zipUtil = new ZipUtils();
+zipUtil .zipHighCompression("C:/misc/myFile.xlsx", "C:/anil/misc/temp/");
+&lt;/tt&gt;
 # File IO APIs
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Fri, 13 Feb 2015 10:27:04 -0000</pubDate><guid>https://sourceforge.netb96d2294c62cbf365be704453e4409a5c517fb18</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -15,8 +15,8 @@
 ## File Compression APIs
 ### Unzipping a zip file
 You can Unzip the file and write all it's contents and files.
-~~~~~~~~~~~~~~~~~~~~~~~
+&lt;tt&gt;
 ZipUtils zipUtil = new ZipUtils();
 zipUtil.unzip("C:/anil/misc/temp/anikl.zip");
-~~~~~~~~~~~~~~~~~~~~~~~~~~
+&lt;/tt&gt;
 # File IO APIs
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Fri, 13 Feb 2015 04:28:09 -0000</pubDate><guid>https://sourceforge.netd0f56f98b5d810a6b1ebcc448f5fb777b552f64c</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -12,5 +12,11 @@

 # How to use
 For now just download the latest jar (effy1.2.jar) at the moment, add it to your project in Eclipse/Idea and start coding.
-# File Compression APIs
+## File Compression APIs
+### Unzipping a zip file
+You can Unzip the file and write all it's contents and files.
+~~~~~~~~~~~~~~~~~~~~~~~
+ZipUtils zipUtil = new ZipUtils();
+zipUtil.unzip("C:/anil/misc/temp/anikl.zip");
+~~~~~~~~~~~~~~~~~~~~~~~~~~
 # File IO APIs
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Fri, 13 Feb 2015 04:09:58 -0000</pubDate><guid>https://sourceforge.net96861def37d429f0d2c54084ee171a01fa246cc9</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -8,8 +8,9 @@
 ## Why another IO Utility java library
 There are couple of really good libraries in this field (Apache IOUtils comes to mind). But off late while doing a lot of development, I have always had to make choice between the right way of doing things and the faster way of doing things. Often due to initial time constraints, the faster way would win. But after some time I would have to revisit and then redo the things the right way. This was the motivation behind creating Effy (for those wondering about the name, Effy is a short form of Efficient). So you could use Effy API methods without worrying about the performance.
 ## Mission Statement
+Creating better technology the open source way. Effy is and will always be open source for usage.

-# What is Effy
 # How to use
+For now just download the latest jar (effy1.2.jar) at the moment, add it to your project in Eclipse/Idea and start coding.
 # File Compression APIs
 # File IO APIs
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Thu, 12 Feb 2015 17:59:50 -0000</pubDate><guid>https://sourceforge.netb355b777d58c603496873c8ec96cf6259a0a1846</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -4,10 +4,11 @@
 [TOC]

 # About the developer
-I am software development manager at [Serus](http://www.serus.com/), we create SAAS applications for supply chain domain. You can find me on [LinkedIn](http://in.linkedin.com/in/aniliitk). I keep coding day in and day out. During office timings,  I code for my company, and during after hours I work on open source projects. I have around 11 private repositories and 3 public repositories. 
+I am Anil, software development manager at [Serus](http://www.serus.com/), we create SAAS applications for supply chain domain. You can find me on [LinkedIn](http://in.linkedin.com/in/aniliitk). I keep coding day in and day out. During office timings,  I code for my company, and during after hours I work on open source projects. I have around 11 private repositories and 3 public repositories. 
 ## Why another IO Utility java library
+There are couple of really good libraries in this field (Apache IOUtils comes to mind). But off late while doing a lot of development, I have always had to make choice between the right way of doing things and the faster way of doing things. Often due to initial time constraints, the faster way would win. But after some time I would have to revisit and then redo the things the right way. This was the motivation behind creating Effy (for those wondering about the name, Effy is a short form of Efficient). So you could use Effy API methods without worrying about the performance.
+## Mission Statement

-## Mission Statement
 # What is Effy
 # How to use
 # File Compression APIs
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Thu, 12 Feb 2015 17:32:48 -0000</pubDate><guid>https://sourceforge.net072281d1dc70f2a2130831ac2b30d74d99292130</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -4,8 +4,9 @@
 [TOC]

 # About the developer
-I am software developer at [Serus](http://www.serus.com/), we create SAAS applications for supply chain domain.
+I am software development manager at [Serus](http://www.serus.com/), we create SAAS applications for supply chain domain. You can find me on [LinkedIn](http://in.linkedin.com/in/aniliitk). I keep coding day in and day out. During office timings,  I code for my company, and during after hours I work on open source projects. I have around 11 private repositories and 3 public repositories. 
 ## Why another IO Utility java library
+
 ## Mission Statement
 # What is Effy
 # How to use
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Thu, 12 Feb 2015 17:25:54 -0000</pubDate><guid>https://sourceforge.netdf39672bccd2b3fd5c1c12b7f97e999c167f0a27</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -4,6 +4,7 @@
 [TOC]

 # About the developer
+I am software developer at [Serus](http://www.serus.com/), we create SAAS applications for supply chain domain.
 ## Why another IO Utility java library
 ## Mission Statement
 # What is Effy
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Thu, 12 Feb 2015 17:16:37 -0000</pubDate><guid>https://sourceforge.net76692018d2b8acdc752cd14d685e137d1df817f7</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,2 +1,12 @@
 Effy
 ====
+
+[TOC]
+
+# About the developer
+## Why another IO Utility java library
+## Mission Statement
+# What is Effy
+# How to use
+# File Compression APIs
+# File IO APIs
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Thu, 12 Feb 2015 17:02:29 -0000</pubDate><guid>https://sourceforge.nete5529f5df9fb673c279af0f5fbf2dab62175d647</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1 +1,2 @@
-Detailed Documentation for Effy
+Effy
+====
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Thu, 12 Feb 2015 16:55:24 -0000</pubDate><guid>https://sourceforge.net4161123a2e11dd919bd74d5edd7cc9eab7bd5042</guid></item><item><title>Doc modified by Anil Verma</title><link>https://sourceforge.net/p/effy/wiki/Doc/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Detailed Documentation for Effy&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anil Verma</dc:creator><pubDate>Thu, 12 Feb 2015 16:54:00 -0000</pubDate><guid>https://sourceforge.net4b4a6a9bf234bcd44e19daa20e7ae8638d8031a7</guid></item></channel></rss>