Re: CSV File Reader

2010-08-31 Thread Kieran Kelleher
apache commons lang is in a couple of Wonder frameworks IIRC, but you can just drop the jar in your own foundation framework as your first port of call for general swiss army knife java foundation utilities. On Aug 31, 2010, at 6:00 PM, Ricardo J. Parada wrote: > > > That would be a good addi

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 to be smart e

Re: CSV File Reader

2010-08-31 Thread Ricardo J. Parada
That would be a good addition I think. I had already written my own for escaping/unescaping CSV. I would rather use what's out there. :-) On Aug 31, 2010, at 5:51 PM, Kieran Kelleher wrote: > Does not get any simpler than apache commons lang CSV > StringTokenizer.getCSVInstance() which is

Re: CSV File Reader

2010-08-31 Thread Kieran Kelleher
Does not get any simpler than apache commons lang CSV StringTokenizer.getCSVInstance() which is intelligent enough to understand Excel type CSV with delimiters when there is commas inside the token and no delimiters when there is no commas. It also escapes quotes IIRC. http://commons.apache.org

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 needs to be smart enough to esc

Re: CSV File Reader

2010-08-31 Thread Mike Schrag
back in the day, ostermiller used to be GPL and he refused to dual license it ... not sure if that's still true On Aug 31, 2010, at 2:49 PM, Louis Demers wrote: > I use ostermillerutils_1_07_00 oof the page http://ostermiller.org/utils/ > > > On 2010-08-31, at 14:40 , Joe Moreno wrote: > >> C

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, "Cupertino, CA" > >

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'm sure that this wouldn't be hard to w

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 have to debug. :^D Many thanks,

Re: WOWODC 2010 recordings

2010-08-31 Thread Ken Anderson
Yes, extremely well organized - went off without a hitch! On Aug 31, 2010, at 12:58 PM, Louis Demers wrote: > Hi, > > While we didn't have the occasion to doit it in group, I want to thank you > publicly for such a well orchestrated event. Congratulations and thank you > very much for the eff

Re: WOWODC 2010 recordings

2010-08-31 Thread Louis Demers
Hi, While we didn't have the occasion to doit it in group, I want to thank you publicly for such a well orchestrated event. Congratulations and thank you very much for the effort you put in. Cheers On 2010-08-31, at 11:53 , Pascal Robert wrote: > Ok, so before people start asking the questi

Re: WOWODC 2010 recordings

2010-08-31 Thread David Holt
Yay! That is great news. Thanks again for organizing the conference, Pascal. When you come away with several ideas that you know you need to implement right away, you know the content was fantastic. David On 2010-08-31, at 9:47 AM, Pascal Robert wrote: > Don't worry, most of the slides will

Re: WOWODC 2010 recordings

2010-08-31 Thread Pascal Robert
Don't worry, most of the slides will be available to attendants before the end of the week. > > It would be nice to have access to the slides for the presentations. > Sometimes I was not fast enough to write down urls, relevant properties, code > snippets, etc. and now that I got back and wa

Re: WOWODC 2010 recordings

2010-08-31 Thread Ricardo J. Parada
It would be nice to have access to the slides for the presentations. Sometimes I was not fast enough to write down urls, relevant properties, code snippets, etc. and now that I got back and want to try things out I'm having a hard time. :-) Thanks On Aug 31, 2010, at 11:53 AM, Pascal Rob

WOWODC 2010 recordings

2010-08-31 Thread Pascal Robert
Ok, so before people start asking the questions. Yes, we recorded most of the sessions, and I have looked at a couple of recordings and it only requires a minimum of editing. 3.5 sessions are missing (the .5 is my talk about Nagios, shame on me!) but 2.5 of them will be recorded again in the nex

Re: Heap memory usage question

2010-08-31 Thread Martin Samm
looks like regular (3-hourly) garbage collection (or threshold based). do you have any tools to drill in and see what object instances are on the heap? do you have any background processes running? On 31 August 2010 15:44, Pascal Robert wrote: > Hello everyone, > > Two weeks ago, we started usi

Re: Heap memory usage question

2010-08-31 Thread Mike Schrag
I wouldn't let it worry you too much -- you can tell it's obviously just garbage, since it collects back down to a stable state consistently. JMX requires object creation, you probably have background threads doing things, etc. This isn't THAT big of a deal. If you're really curious, you can tak

Heap memory usage question

2010-08-31 Thread Pascal Robert
Hello everyone, Two weeks ago, we started using Nagios to check and graph heap memory usage, and I see something strange : every 3 hours, heap usage goes from 30 MB down to 12 MB! I also saw that behavior when using JConsole in preparation for my WOWODC presentation. In fact, heap usage goes u

Re: ERModernDirectToWeb relationship problem [SOLVED]

2010-08-31 Thread David LeBer
On 2010-08-30, at 7:09 PM, Tim Worman wrote: > I was wrong. I was able to solve this issue by giving the rule below a higher > priority than that for my custom page wrapper. Previously my custom page > wrapper rule was at 100. Thanks David for the help. My session at WOWODC2010 on troubleshoot