如何在java swing应用程序中显示验证码

前端之家收集整理的这篇文章主要介绍了如何在java swing应用程序中显示验证码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我需要在java swing应用程序中添加验证码验证器.我一直在搜索一些库(JCaptcha和SimpleCatcha),但它们用于Web开发.

是否有任何图书馆在秋千上使用验证码?如果不是,是否有一个网页或存储库,其中包含一些验证码,以实现我自己的验证码?

我非常感谢您的时间和帮助.

提前致谢.

最佳答案
JCaptcha可以返回BufferedImage.从那里使用JLabel获取图像并不困难:

BufferedImage captcha = // Get the captcha
// See also com.octo.captcha.service.image.AbstractManageableImageCaptchaService.getImageChallengeForID(String)
JLabel label = new JLabel(new ImageIcon(captcha));
// ... add that label to a visible container of your Swing application

在1.0版中,您可以使用:http://jcaptcha.sourceforge.net/apidocs/1.0/com/octo/captcha/service/image/AbstractManageableImageCaptchaService.html

在2.0-alpha1中,有:http://jcaptcha.sourceforge.net/apidocs/2.0-alpha1/com/octo/captcha/service/image/AbstractManageableImageCaptchaService.html#getImageChallengeForID(java.lang.String)

您还可以使用额外的Locale参数检查这些方法的重载版本.

在每种情况下,都有一个默认的实现类DefaultManageableImageCaptchaService.

原文链接:https://www.f2er.com/java/438137.html

猜你在找的Java相关文章