1. FlatFileReader - Re Arranging lines in the flat file before processing forum.springsource.orgFlatFileReader - Re Arranging lines in the flat file before processing Hi, Is there an easy way to re arrange the lines in a flat file before passing on to the ... |
2. How to escape \n in flat file forum.springsource.orgHi, We process csv flat files, the line separator is \n, but certain data fields in the file can contain \n too, how can managethis situation properly with ItemReader interface ? ... |
3. Pattern for converting from denormalized flat file to normalized structure forum.springsource.orgPattern for converting from denormalized flat file to normalized structure Hi, I am looking for best practices in processing a flat file that holds a denormalized one-to-many structure. For example I'd ... |
4. Regarding Comaprison of two flat files forum.springsource.orgI have got two flat files. I am reading them and have to compare both of them for specific record. IF that record is matching I have to read a new ... |
5. escaping tabs and new lines when writing to a flat file forum.springsource.orgescaping tabs and new lines when writing to a flat file hi all i have to write a job where i read data from the database and output it to a ... |
6. Suggestions for flat file library? forum.springsource.orgYes, I know this is old school, but I need to have the ability to parse flat files. Any suggestions? These flat files have a header, trailer and several types of ... |
7. Field names in first line of flat files forum.springsource.orgField names in first line of flat files Hi all, I ran into some problems when trying to implement an import batch (using 1.0-M2). The thing is that the source import ... |
8. Processing flat-file in groups forum.springsource.orgProcessing flat-file in groups Hello, imagine the following situation: I have a flat-file with lot of transactions (one per line, in CVS format) ordered by city and province where they have ... |
9. list to flat file forum.springsource.orgIf you just want to use the FlatFileItemWriter on its own, you can do that by passing your list to the write() method: Code: writer.setResource(new FileSystemResource(outputFile)); writer.setLineAggregator(someLineAggregator); writer.open(new ExecutionContext()); writer.write(myList); writer.close(); ... |
10. reading and writing to different flat files forum.springsource.orgreading and writing to different flat files Hi, I am trying to read from a list of fixed length flat files and want to write them sequentially in to another flat ... |
11. Reading flat file with cyrillic characters forum.springsource.orgHi, I am trying to process with Spring batch input files that contain cyrillic letters. Is it enough to add the encoding property for the reader like encoding ="ISO-8859-5"; ? Thanks. ... |
12. How to compare different lines in a flat file forum.springsource.orgHow to compare different lines in a flat file Hello, I need to load a flat file into a database. The flat file looks like this: Company1 Employee1 Period1 Company1 Employee1 ... |