Re: java.util.zip (was Questions about DeleteFile method)

2005-05-03 Thread Pasha Bizhan
Hi,
 "Monsur Hossain" <[EMAIL PROTECTED]> wrote:
Hmm, but upon first look I don't see a direct analog to 
the Inflater/Deflater methods.
using ICSharpCode.SharpZipLib.Zip;
using ICSharpCode.SharpZipLib.Zip.Compression;
// Create the compressor with highest level of compression
 Deflater compressor = new Deflater();
 compressor.SetLevel(Deflater.BEST_COMPRESSION);
and etc
Pasha Bizhan
http://lucenedotnet.com
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: java.util.zip (was Questions about DeleteFile method)

2005-05-04 Thread George Aroush
Hi,

I am not too excited about using SharpZipLib -- if I use it, unlike now,
DotLucene will end up with a 3rd party dependency thus, the port can't be
used out of the box.  I know, I might not have a better alternative.

Regards,

-- George Aroush

-Original Message-
From: Pasha Bizhan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 04, 2005 1:22 AM
To: java-dev@lucene.apache.org
Subject: Re: java.util.zip (was Questions about DeleteFile method)

Hi,

  "Monsur Hossain" <[EMAIL PROTECTED]> wrote:

> Hmm, but upon first look I don't see a direct analog to the 
>Inflater/Deflater methods.

using ICSharpCode.SharpZipLib.Zip;
using ICSharpCode.SharpZipLib.Zip.Compression;

// Create the compressor with highest level of compression
  Deflater compressor = new Deflater();
  compressor.SetLevel(Deflater.BEST_COMPRESSION);

and etc

Pasha Bizhan
http://lucenedotnet.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: java.util.zip (was Questions about DeleteFile method)

2005-05-04 Thread Doug Cutting
Monsur Hossain wrote:
George, what about SharpZipLib:
http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx
It's a third-party project, but its written in C# and is under GPL.
GPL unfortunately means that the library cannot be distributed by Apache 
with Lucene.Net.

Doug
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: java.util.zip (was Questions about DeleteFile method)

2005-05-04 Thread Chuck Williams
Doug Cutting wrote:
Monsur Hossain wrote:
George, what about SharpZipLib:
http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx
It's a third-party project, but its written in C# and is under GPL.

GPL unfortunately means that the library cannot be distributed by 
Apache with Lucene.Net.
George,
I think this may hold an answer:  
http://msdn.microsoft.com/msdnmag/issues/03/06/ZipCompression/default.aspx

J#.Net contains java.util.zip and can be accessed from C#.  The article 
contains the details.

Will this work for you?
Chuck
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: java.util.zip (was Questions about DeleteFile method)

2005-05-04 Thread Joaquin Delgado
Interesting to know that "<>,
it is no surprise that the java.util.zip namespace is available to
developers through the J# runtime."

I wonder if some of the latest developments in Lucene-Java, can be
ported to C# (.NET) via the J# runtime.

J.D.

-Original Message-
From: Chuck Williams [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 04, 2005 12:50 PM
To: java-dev@lucene.apache.org
Subject: Re: java.util.zip (was Questions about DeleteFile method)

Doug Cutting wrote:

> Monsur Hossain wrote:
>
>> George, what about SharpZipLib:
>>
>> http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx
>>
>> It's a third-party project, but its written in C# and is under GPL.
>
>
> GPL unfortunately means that the library cannot be distributed by 
> Apache with Lucene.Net.

George,

I think this may hold an answer:  
http://msdn.microsoft.com/msdnmag/issues/03/06/ZipCompression/default.as
px

J#.Net contains java.util.zip and can be accessed from C#.  The article
contains the details.

Will this work for you?

Chuck


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]