JTextFileParser is a java package built for simplifing delimited text files parsing. It gives you a quick way for parsing a delimited text file, managing rows and row’s fields.
To use this package
... [More]
you need JDK 1.3 or greater.
Latest release1.3.1 is the latest version. Download it or check what's changed.
How to install and useInstallation is quite straigthforward: just download the zip archive, expand it and put the jar into your classpath.
Now you can instantiate a TextFile object and start working.
TextFile file = new TextFile("fileName","filePath","separator");What you can doWhen you instantiate a TextFile object, the text file is parsed so you can easily access every row and every field.
Check the Examples page.
After creating a TextFile object you can export data to a new text file or an html file: you can choose to export the whole file or just a subset of rows or a subset of fields.
Comments and requestsPlease leave comments and requests on the project home page
DisclaimerPlease remember: "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details." [Less]