Is there any algorithm which can parse or decode the String results obtained from BarCode Scanner using Zxing?

I want to extract Lot number or serial number from the scanned result. Is there any standard algorithm to do so?

I currently use,

    String lotNumber=scanResults.substring(24,26);  
if (lotNumber.equalsIgnoreCase("10")){  
             System.out.println("Lot numberrrrrrrrrrr " + a.substring(26,a.length()));  
         }  

Thanks
Sneha

link|improve this question

56% accept rate
feedback

2 Answers

Look at the class ResultParser. It will try to parse the result string as something more meaningful. For example "mailto:foo@example.org" would come back as EmailParsedResult, letting you know it's an email address and parsing out the address for you.

I am not sure what this lot number is -- it's not well-known and so not implemented outside your system. But yes you can find a lot of this kind of logic in the project already, which you can perhaps reuse and modify.

link|improve this answer
Lot numbers are .. fairly well marked (AI 23) though. – Jens Jan 23 at 15:12
feedback

no there is no magic in java or any language which can tell you what is that data for which that bar code was generated. You should know the data and should know its content type (json, xml etc) and then use the parser. Or if its not as per the defined standards (any random string) than do as what you are doing.

link|improve this answer
but if we can encode data as in en.wikipedia.org/wiki/GS1-128 for GS-128, there should be something for decoding right? – Sneha Jan 23 at 12:26
thats what I wanna say, you must know what you have used to encode the data. Then only you can find/ decide what needs to be used to decode/decrypt it. But which way/ algo you should use, cant be told programmatically. – akkilis Jan 23 at 12:32
okay.. thank you. it means that Zxing has nothing as such other than giving format and scanned results. – Sneha Jan 23 at 12:39
yes :) its just "what is encoded as bar code is what you get". – akkilis Jan 23 at 13:39
feedback

Your Answer

 
or
required, but never shown

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