Reading COBOL datastructures from Java

后端 未结 8 916
情深已故
情深已故 2020-12-13 05:14

Is there a way to read COBOL data in a Java program? More concretely I\'m confronted with the following case:

I have a file with fixed length records of data. The da

相关标签:
8条回答
  • 2020-12-13 05:55

    There appear to be some commercial solutions for this. Alternatively you can use cb2xml to convert the copybooks to XML, and then import the XML into Java using whatever mechanism you require.

    0 讨论(0)
  • 2020-12-13 05:59

    I have used Bruce's JRecord (from sourceforge) package for my project. It took only couple of days to learn to use it and saved me months of work in rolling out a much less general solution on my own. I recommend it highly.

    0 讨论(0)
提交回复
热议问题