How can I convert a mainframe binary file (EBCDIC) having cobol copybook as record layout information to ASCII file by keeping in mind regarding the packed and zoned decimal format using any Java API or Open source tool?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Reading in Java
If you want to Read Mainframe Cobol Files in java, have a look at
Also the RecordEditor will let you view / Edit Mainframe Cobol Files
Conversion Utilities
For simple Cobol files these conversion utilities (based on JRecord) could be used:
RecordEditor
The RecordEditor has a Generate option for generating Java / JRecord code. See RecordEditor Code Generation notes
Note: I am the author of JRecord/RecordEditor