Re: CSV Parsing best strategy

2008-10-17 Thread Lothar Kimmeringer
tin schrieb: I need to have a CSV import functionality in my application. User can give CSV files to the web client and then the server is supposed to understand its contents and persist the data. What would be the best approach to handle this? - I upload the CSV file from the web client

Re: CSV Parsing best strategy

2008-10-17 Thread [EMAIL PROTECTED]
On one of our apps we did the same thing, pushing it first up to the server and then doing the parsing there. We actually used POI, which is a Java based Excel compatible library (living in the Apache space, just Google for it) and it works great for both Excel and for CSV. As Lothar states, it