当前位置:  开发笔记 > 编程语言 > 正文

如何使用Jsoup获取表单验证码图像?

如何解决《如何使用Jsoup获取表单验证码图像?》经验,为你挑选了1个好方法。

我正在为我的学校网站开发一个应用程序,我正在使用jsoup来解析html.

我遇到了验证码图像的问题我看到了这个问题并且我已经实现但是我没有得到与网站上显示的图像相同的图像.

如何获得相同的图像验证码,网站使用BotDetectCaptcha我有点困惑我怎么能在我的网站上专门做到这一点

学校网站

在此输入图像描述



1> Stephan..:

正如SLaks评论中所述,您可能错过了一些cookie.

以下是提供的url的工作示例:

// Load the initial page for getting the required cookies
Connection conn = Jsoup.connect("https://www.saes.upiicsa.ipn.mx/");
Document d = conn.get();

Element captcha = d.select("#c_default_ctl00_leftcolumn_loginuser_logincaptcha_CaptchaImage").first();
if (captcha == null) {
    throw new RuntimeException("Unable to find captcha...");
}

// Fetch the captcha image
Connection.Response response = Jsoup //
        .connect(captcha.absUrl("src")) // Extract image absolute URL
        .cookies(conn.response().cookies()) // Grab cookies
        .ignoreContentType(true) // Needed for fetching image
        .execute();

// Load image from Jsoup response
ImageIcon image = new ImageIcon(ImageIO.read(new ByteArrayInputStream(response.bodyAsBytes())));

// Show image
JOptionPane.showMessageDialog(null, image, "Captcha image", JOptionPane.PLAIN_MESSAGE);

OUTPUT

在此输入图像描述

在JSoup 1.8.3上测试过

推荐阅读
路人甲
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有