There are lots of components out there creating/parsing barcode images but i could not manage to find a library which parses a EAN-128 barcode-string and gives me simply a java-pojo object from which I can get EAN-128 groups if they were included in the barcode.
Example pseudocode:
EAN128Pojo pojo = EAN128Pojo.parse(some string got from scanner);
Date dueDate = pojo.getDueDate();
or
Object dueDate = pojo.get("12" /*application identifier for due date*/);
Is there any library capable of this?
I don't know of any, and neither does Google CodeSearch: http://www.google.com/codesearch?q=getAdditionalProductIdentification
Anyway, writing your own isn't that difficult. This one took me less than an hour:
And some demonstration code:
When you assume that your input is already a
String
, pay attention to encoding issues. TheFNC1
code does not have a corresponding Unicode Code Point, so it has to be encoded in some other way.