I wish to dynamically generate QR codes in Java. What is the best QR code generator library to use. I will consider both commercial and opensource?

link|improve this question

feedback

closed as not constructive by Will Sep 16 '11 at 20:50

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

I don't know what qualifies as best but zxing has a qr code generator for java, is actively developed, and is liberally licensed.

link|improve this answer
And it is used on Android phones, AFAIK. – Tichodroma Aug 25 '11 at 19:34
Yes, the zxing project is the source of the standard Barcodes app, though that's actually decoding, not encoding. – smparkes Aug 25 '11 at 19:56
The OP is about Java and comment is about Android, and in both cases it is used for encoding as well as decoding. – Sean Owen Aug 26 '11 at 6:14
Blah. I did mean Barcode Scanner, the Android app. My bad on the encoder. – smparkes Aug 26 '11 at 7:00
feedback

Here is C# QR Encode/Decode Library. That worked well for us. http://www.codeproject.com/KB/cs/qrcode.aspx. Example is using Window App but you can easily use the dll in your web project.

link|improve this answer
feedback

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