We have to store data from some flat files that is created using IBM's Ab-Initio product. They have their own datatypes that I need to map to java data-types while I process that data in java.

Does anyone know what would a good technique to do so ? Are their any java APIs to do so ?

simplest technique I have in mind is to create a map of Ab-Initio to Java type after checking the size in Ab-Initio and choosing datatype that represents that size and type in Java.

Any inputs are appreciated !

Thanks, -JJ

link|improve this question

44% accept rate
Is there a way to convert the Ab-Inito files to a .csv format? – David Ann Mar 17 '11 at 17:38
Not sure how many people will know Ab-Initio, maybe if there is a way to rephrase the question on concrete data more people may help – Jan Zyka Mar 17 '11 at 17:40
feedback

1 Answer

up vote 1 down vote accepted

When converting data between various languages I like to stick to a couple basic data structures which seem to be able to handle any type of data:

  1. Primitives - for storing basic values like strings and numbers.
  2. Maps - for associating properties with values for an object.
  3. Lists - for storing sequences of primitives and objects.

Of course, in Java, it's canonical to create an object with bean properties instead of a Map when the full domain of attributes is known.

link|improve this answer
thanks Maerics ! – user656189 Mar 17 '11 at 20:43
My question was more like, if say you have : name<ctrla>varchar<ctrl a>20, you will make name a string java. So, how we create this mapping program. Should we make a mapping list that if input is varchar, create java type string. if input is float, make java type float etc. And then use this mapping to create java types from a fixed lenth line ? – user656189 Mar 17 '11 at 20:44
feedback

Your Answer

 
or
required, but never shown

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