如何使用 J2EE 创建二维码?
how create QR code using J2EE?
我正在开发一个项目,其中包含姓名、地址、phone 和电子邮件等用户数据。我想用这些数据生成一个 QR 码,并与每个用户的数据一起存储在数据库中。
类似于:enter link description here
任何人都知道我如何使用 Java 网络来做到这一点?
谢谢
在 Java 中创建二维码并不难。有优秀的zebra crossing library for that. The resulting image can be stored as blob in Mysql or you could use the input parameters and gernerate the image on the fly. There is a question on SO dealing with storing QR codes in mysql here.
我正在开发一个项目,其中包含姓名、地址、phone 和电子邮件等用户数据。我想用这些数据生成一个 QR 码,并与每个用户的数据一起存储在数据库中。 类似于:enter link description here
任何人都知道我如何使用 Java 网络来做到这一点? 谢谢
在 Java 中创建二维码并不难。有优秀的zebra crossing library for that. The resulting image can be stored as blob in Mysql or you could use the input parameters and gernerate the image on the fly. There is a question on SO dealing with storing QR codes in mysql here.