RE: CSV parser printer

2004-09-29 Thread Jung, Eric
Tim, Is your CSV parser in codec or elsewhere? I'd like to take a look at it, even if it's just on BugZilla. Thanks, eric -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 7:43 PM To: Jakarta Commons Developers List Subject: Re: CSV

RE: CSV parser printer

2004-09-22 Thread Tim Dawson
Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 12:44 AM To: Jakarta Commons Developers List Subject: Re: CSV parser printer Tim, do you have a CLA in place with the ASF? On Wed, 22 Sep 2004 00:03:14 -0500, Tim Dawson [EMAIL PROTECTED] wrote

RE: CSV parser printer

2004-09-21 Thread Tim Dawson
a better way of accomplishing this, I will gladly use it. Tim -Original Message- From: Henri Yandell [mailto:[EMAIL PROTECTED] Sent: Friday, September 17, 2004 11:36 AM To: Jakarta Commons Developers List Subject: Re: CSV parser printer Unless anyone wants to -1 it, submit your

Re: CSV parser printer

2004-09-21 Thread Dion Gillard
, September 17, 2004 11:36 AM To: Jakarta Commons Developers List Subject: Re: CSV parser printer Unless anyone wants to -1 it, submit your code in as the package org.apache.commons.io.csv to Bugzilla as a zip or something (including unit tests) and I'll go ahead and review

Re: CSV parser printer

2004-09-18 Thread Stephen Colebourne
From: Paul Libbrecht [EMAIL PROTECTED] How much of these implementations implement any of the csv specifications ? I've been told there are several ones... If there are CSV specs, then [codec] might be favourite over [io] for this. Wasn't there talk about 'steamable codecs' at one point? Is this

Re: CSV parser printer

2004-09-18 Thread Paul Libbrecht
Well, there's no real standards, sadly, at least the following seems to show so: http://answers.google.com/answers/threadview?id=379536 But I would recommend to say that this is compatible with xxx... at least experimentally,... paul From Stephen Colebourne [EMAIL PROTECTED]: From: Paul

Re: CSV parser printer

2004-09-18 Thread Henri Yandell
On Fri, 17 Sep 2004 09:06:09 +0200, Paul Libbrecht [EMAIL PROTECTED] wrote: Le 17 sept. 04, à 01:51, Henri Yandell a écrit : http://www.osjava.org/genjava/multiproject/gj-csv/ is available as well if it has any useful ideas that could be merged in. Henri, does this mean you're

RE: CSV parser printer

2004-09-17 Thread Tim Dawson
java.io.Writer. Tim -Original Message- From: Henri Yandell [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 6:51 PM To: Jakarta Commons Developers List; Dion Gillard Subject: Re: CSV parser printer http://www.osjava.org/genjava/multiproject/gj-csv/ is available

Re: CSV parser printer

2004-09-17 Thread Martin Cooper
:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 6:51 PM To: Jakarta Commons Developers List; Dion Gillard Subject: Re: CSV parser printer http://www.osjava.org/genjava/multiproject/gj-csv/ is available as well if it has any useful ideas that could be merged in. IO is the first

Re: CSV parser printer

2004-09-17 Thread Paul Libbrecht
Le 17 sept. 04, à 01:51, Henri Yandell a écrit : http://www.osjava.org/genjava/multiproject/gj-csv/ is available as well if it has any useful ideas that could be merged in. Henry, does this mean you're willing to bring this to Apache if need be or if there's an interest ? IO is the first place

RE: CSV parser printer

2004-09-16 Thread Jung, Eric
Tim, Someone beat you to the punch. There's already an implementation at: http://ostermiller.org/utils/CSV.html and for excel: http://ostermiller.org/utils/ExcelCSV.html I haven't used them so I don't know how well they work. That said, these classes are on the lesser-known Giant Java Tree, not

Re: CSV parser printer

2004-09-16 Thread Stephen Colebourne
This has come up before, but we haven't quite found a home for classes like this. [lang] has a Tokenizer class that can parse a CSV string, but I suspect your code goes beyond that. [codec] does encoding/decoding. Is CSV an encoding? [io] is the other possibility, but has steered clear of

Re: CSV parser printer

2004-09-16 Thread Dion Gillard
The licensing on those is GPL. On Thu, 16 Sep 2004 14:32:20 -0400, Jung, Eric [EMAIL PROTECTED] wrote: Tim, Someone beat you to the punch. There's already an implementation at: http://ostermiller.org/utils/CSV.html and for excel: http://ostermiller.org/utils/ExcelCSV.html I haven't

Re: CSV parser printer

2004-09-16 Thread Henri Yandell
http://www.osjava.org/genjava/multiproject/gj-csv/ is available as well if it has any useful ideas that could be merged in. IO is the first place I'd look for csv handling (though possibly only because I implement them as Reader/Writer style classes). Others have suggested Codec in the past.