I am using file layout method and using Peoplesoft suggested code. It works fine with a small csv file but I need to import a file that is 921,000kb. It took a day and is still running.
I cannot use an external tool because this is supposed to be a batch process in a daily schedule. I am asking if there is another way that I can code it inside an app engine program. Please advise. Thanks for your help.
Well, i have never worked with a file so heavy, but have put some code here that may help you, is a class that use a Java BufferedReader to read a CSV file line by line and parse them into an object (I do not know much about java, but i think a BufferedReader should be more efficient when reading large files), then you can access each member of the line using their index or the excel column names.
This is an example:
The downside is that all items are treated as strings yet, so you would have to do the conversions.