Re: CSV File Reader

2010-08-31 Thread Kieran Kelleher
desired extensions to the java language and saves a lot >> of reinventing the wheel :-) >> >> They even have something like ERXSimpleTemplateParser that uses ${argname} >> style variables: >> http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/text/StrSubst

Re: CSV File Reader

2010-08-31 Thread Q
On 01/09/2010, at 4:40 AM, Joe Moreno wrote: > Can anyone recommend a simple CSV file reader for WO? It doesn't get much simpler than opencsv, but it can be a little on the slow side compared to purpose written code if you need to process huge amounts of data quickly. > It needs

Re: CSV File Reader

2010-08-31 Thread Ricardo J. Parada
> > They even have something like ERXSimpleTemplateParser that uses ${argname} > style variables: > http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/text/StrSubstitutor.html > > > On Aug 31, 2010, at 2:40 PM, Joe Moreno wrote: > >> Can anyone recommend a sim

Re: CSV File Reader

2010-08-31 Thread Kieran Kelleher
something like ERXSimpleTemplateParser that uses ${argname} style variables: http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/text/StrSubstitutor.html On Aug 31, 2010, at 2:40 PM, Joe Moreno wrote: > Can anyone recommend a simple CSV file reader for WO? > > It needs to

Re: CSV File Reader

2010-08-31 Thread Lon Varscsak
I recently used opencvs, worked perfectly for my needs. -Lon On Tue, Aug 31, 2010 at 11:42 AM, Mike Schrag wrote: > http://opencsv.sourceforge.net/ > On Aug 31, 2010, at 2:40 PM, Joe Moreno wrote: > >> Can anyone recommend a simple CSV file reader for WO? >> >> It

Re: CSV File Reader

2010-08-31 Thread Mike Schrag
Joe Moreno wrote: > >> Can anyone recommend a simple CSV file reader for WO? >> >> It needs to be smart enough to escape commas inside quotes, i.e.: >> Name, Location >> John Smith, "Cupertino, CA" >> >> I'm sure that this wouldn't be ha

Re: CSV File Reader

2010-08-31 Thread Louis Demers
I use ostermillerutils_1_07_00 oof the page http://ostermiller.org/utils/ On 2010-08-31, at 14:40 , Joe Moreno wrote: > Can anyone recommend a simple CSV file reader for WO? > > It needs to be smart enough to escape commas inside quotes, i.e.: > Name, Location > John Smith,

Re: CSV File Reader

2010-08-31 Thread Mike Schrag
http://opencsv.sourceforge.net/ On Aug 31, 2010, at 2:40 PM, Joe Moreno wrote: > Can anyone recommend a simple CSV file reader for WO? > > It needs to be smart enough to escape commas inside quotes, i.e.: > Name, Location > John Smith, "Cupertino, CA" > > I'

CSV File Reader

2010-08-31 Thread Joe Moreno
Can anyone recommend a simple CSV file reader for WO? It needs to be smart enough to escape commas inside quotes, i.e.: Name, Location John Smith, "Cupertino, CA" I'm sure that this wouldn't be hard to write, but code I don't have to write is code that I don't ha