Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a file from a vendor that has 115 fixed-width fields per line. What's the best way of parsing that file into the 115 fields so I can use them in my code?

My first thought is just to make constants for each field like NAME_START_POSITION and NAME_LENGTH and using substring. That just seems ugly so I'm curious if there's any other recommended ways of doing this. None of the couple of libraries a Google search turned up seemed any better either. Thanks

share|improve this question

3 Answers

up vote 10 down vote accepted

I would use a flat file parser like flatworm instead of reinventing the wheel: it has a clean API, is simple to use, has decent error handling and a simple file format descriptor. Another option is jFFP but I prefer the first one.

share|improve this answer
1  
I just wanted to follow up with a thanks for a pointer to Flatworm. It works like a champ and my whole team at work is now using it. – MattGrommes Jan 23 '10 at 19:17
1  
@MattGrommes I'm glad to know you liked it. And thank you very much for the follow up, it's very much appreciated! – Pascal Thivent Jan 23 '10 at 19:49
I tried the library a few days ago and it was broken beyond repair. I would try the previous version but i do not see any docs for it – Monachus Mar 7 '11 at 14:33
This is a great tool! Is there a way to integrate it into some kind of editor - eclipse? – Rekin Apr 10 '12 at 8:56

I've played arround with fixedformat4j and it is quite nice. Easy to configure converters and the like.

share|improve this answer
1  
Note that ff4j uses runtime annotations, which makes mass parsing pretty slow. – ron Sep 11 '12 at 14:32

The Apache Commons CSV project can handle fixed with files.

share|improve this answer
That seems to be "in the sandbox". I'm not familiar with commons, but I get the impression that it means it's not 'done' yet? – Ape-inago Mar 8 at 17:07
It means there is no official release. This is significantly different from "doesn't work". Based on the amount of time it's been in the sandbox, no one appears to to be pushing it towards release, but it still ends up getting widely used. – Jherico Mar 9 at 1:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.