Java + Barcode reading

Hi all!

What Barcode reading tool do you recommend me?

Regards

T

[89 byte] By [tlloretia] at [2007-11-27 10:30:58]
# 1

One of the scanners at your local supermarket.

CaptainMorgan08a at 2007-7-28 18:06:08 > top of Java-index,Java Essentials,Java Programming...
# 2

Your barcode scanner will probably ship with a driver which pumps the decoded barcode into stdin as text. Or the manufacturer may provide one on their website

georgemca at 2007-7-28 18:06:08 > top of Java-index,Java Essentials,Java Programming...
# 3

Hi

there are many different types of barcode readers.

1) using a keyboard (PS2) input (connecting reader and keyboard via a V-shaped cable is possible)

2) using a RS232 port

3) using an USB port (these usually have their own driver)

Which type are you using?

BugBunny

BugBunnya at 2007-7-28 18:06:08 > top of Java-index,Java Essentials,Java Programming...
# 4

> Hi

>

> there are many different types of barcode readers.

> 1) using a keyboard (PS2) input (connecting reader

> and keyboard via a V-shaped cable is possible)

> 2) using a RS232 port

> 3) using an USB port (these usually have their own

> driver)

>

> Which type are you using?

>

> BugBunny

Shouldn't matter how it's plugged in, they'll still all work the same way. With input devices like these, card readers etc, it's very common for the driver to pump the output to stdin, rather than demand that your app asks the device for input

georgemca at 2007-7-28 18:06:08 > top of Java-index,Java Essentials,Java Programming...