How do I embed an URL in a QR code using Zxing, so that the barcode scanner can detect it as an URL?

I think I need to add something more than just the http://.

link|improve this question

My mistake. There was a space before the URL. Thanks a lot guys. Will up vote all those who answer. – Viren Pushpanayagam May 8 '11 at 12:14
feedback

2 Answers

up vote 2 down vote accepted

The most common application of barcodes is to encode the text of URL such as http://google.com/m. To do so, simply encode exactly the text of the URL in the barcode: "http://google.com/m". Include the protocol ("http://", here) to ensure it is recognized as a URL.

Readers should open the URL in the device's web browser when decoding a URL. It is probably desirable for a reader to display the URL and ask the user whether to proceed, so that the user may see the URL before accessing it.

http://code.google.com/p/zxing/wiki/BarcodeContents

link|improve this answer
feedback

Erm, you just write the URL in the QR code. The content is just "http://google.com" or whatever. Any reader will recognize it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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