[Batchserver-cvs] batchserver/src/org/jmonks/batchserver/io/flat package.html, 1.1, 1.2
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-06-14 21:01:58
|
Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/io/flat In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26240 Modified Files: package.html Log Message: no message Index: package.html =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/io/flat/package.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** package.html 13 Jun 2006 04:02:02 -0000 1.1 --- package.html 14 Jun 2006 21:01:51 -0000 1.2 *************** *** 5,9 **** </head> <body> ! Explain the usage of Flat File IO API. </body> </html> --- 5,31 ---- </head> <body> ! Describes the flat file implementation and its usage. ! <p> ! Flat files are the common type of files being used by the enterprises ! to exchange the data. This package provides the implementation to read and ! write two flat file formats fixed width and delimited flat files. Implementation ! assumes that each line in a flat file corresponds to a record. ! </p> ! ! <p> ! <h3>Fixed Width Flat File Implementation</h3> ! Fixed Width flat files consists of set of different records where each record ! is starts with some value to identify the record and each record consists of ! set of of fields where each field starts at one position and ends at one position. ! ! </p> ! ! <p> ! <h3>Delimited Flat File Implementation</h3> ! Delimited flat files consists of set of records of same type where all the records ! consists of same number of fields and each field is are delimited by a special value ! in the record. ! </p> ! </body> </html> |