|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| Emergency UNIX and Linux Support !! Help Me!! Post your urgent questions here for highest visibility. Posting a new thread to this forum requires Bits. We monitor this forum to help people with emergencies, but we do not guarantee response time or answers. This forum is "best effort" only. Members who reply to posts here receive a bonus of 1000 Bits per reply. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Best way to go about this?
I am processing a very large file, which is a text csv report of a database.
I would like to parse this csv file into a bunch of XML files. I am trying to decide the most efficient way to go about doing this. Should I open all the XML files at the same time, and as I encounter data I write to whichever descriptor? This approach would only require iterating through the csv file once. But I would be maintaining a bunch of descriptors at the same time, is that efficient? Should I open and close a descriptor each time I need to write a piece of information to one of the XML files? This approach would also only require iterating through the csv file once. But I would be constantly opening and closing descriptors. Should I fill out each XML file one at a time, iterating through the whole csv file each time? Help much appreciated. |
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
How many different files are we talking about?
|
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
Transform 1 CSV file into a dozen XML files.
|
|
#5
|
|||
|
|||
|
OK I will do that thanks
|
| Sponsored Links | ||
|