I have developed a Point of Sale (POS) system in Java.
Now I want to implement bar code functionality in the program: like I purchase a bar code scanner and want to implement it with my program, and also to generate bar codes.
Is it possible?
I have developed a Point of Sale (POS) system in Java.
Now I want to implement bar code functionality in the program: like I purchase a bar code scanner and want to implement it with my program, and also to generate bar codes.
Is it possible?
Many barcode scanners appear indistinguishable from USB keyboards from the perspective of Java. So a barcode scan "looks like" a bunch of very rapid key events. (It's a non-trivial exercise to sort the scans from the "normal" keystrokes, so this has ramifications on the design of your user interface.