Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keslerm/fixed-file-reader
Utility library for adding a line break to fixed length files to work with BufferedReader getLine
https://github.com/keslerm/fixed-file-reader
Last synced: about 1 month ago
JSON representation
Utility library for adding a line break to fixed length files to work with BufferedReader getLine
- Host: GitHub
- URL: https://github.com/keslerm/fixed-file-reader
- Owner: keslerm
- Created: 2013-04-10T18:37:54.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-08T16:12:27.000Z (over 10 years ago)
- Last Synced: 2023-04-19T14:02:13.150Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 160 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Fixed File Reader
=================I wrote this library when I needed to parse some fixed delimited flat files that contained no new line breaks, and instead relied on reading X characters for each line. I wanted to use one of the many available Java based flat file parsers (For example FlatWorm) to generate Java objects, but almost none of the ones I could find supported files in this manner.
Instead of writing something to parse the files into the correct format, I extended the existing FileReader Java class to handle the task of putting line breaks every X characters automatically.
This is meant to be pushed into a BufferedReader to utilize getLine(), any other usage may not have the correct effect.
This is not a verbose and featureful library, it was written with one specific usage in mind and that's about it.