开发者

Import text file crunching library for Java/Groovy?

开发者 https://www.devze.com 2022-12-30 03:52 出处:网络
In a lot of real life implementations of applications we face the requirement to import some kind of (text) files. Usually we would implement some (hardcoded?) logic to validate the file (eg. proper h

In a lot of real life implementations of applications we face the requirement to import some kind of (text) files. Usually we would implement some (hardcoded?) logic to validate the file (eg. proper header, proper number of delimiters, proper date/time value,etc.). Eventually also need to check for the existence of related data in a table (eg. value of field 1 in text file must have an entry in some basic data table).

While XML solves this (to some extend) with XSD and DTD, we end up hacking this again and again for proprietary text file formats.

Is there any library or framework that allows the creation of templates similar to the xsd approach ? This would make it 开发者_如何转开发way more flexible to react on file format changes or implement new formats.

Thanks for any hints

Sven


Closest thing I can think of is FileHelpers. It's in C#, so it would have to be ported to Java, but that shouldn't be a big deal.

0

精彩评论

暂无评论...
验证码 换一张
取 消