gpt4 book ai didi

java - 使用 htmlunit 下载 javascript 按钮后面的文件

转载 作者:太空宇宙 更新时间:2023-11-04 06:37:55 25 4
gpt4 key购买 nike

我正在尝试使用 HtmlUnit 下载 javascript 按钮后面的附件。执行其他任务效果很好(例如导航、登录)。我检查了附件单元测试,但它对我没有帮助。

final WebClient webClient = new WebClient(BrowserVersion.FIREFOX_24);
final HtmlPage page1 = webClient.getPage( loginUrl );
final HtmlTextInput textField = page1.getElementByName(user);
final HtmlPasswordInput pwd = page1.getElementByName(pwd);
textField.setValueAttribute(User.getUsername());
pwd.setValueAttribute(User.getPassword());

final HtmlSubmitInput button = page1.getElementByName(login);
final HtmlPage page2 = button.click();

String buttonJavaScript = "window.location='"+folder+filename + ....... ";
ScriptResult result = page2.executeJavaScript(buttonJavaScript);
webClient.waitForBackgroundJavaScript(2000);

InputStream is = result.getNewPage().getWebResponse().getContentAsStream();
try {
File f = new File("filename.extension");
OutputStream os = new FileOutputStream(f);
byte[] bytes = new byte[1024];
while (read == is.read(bytes)) {
os.write(bytes, 0, read);
}
os.close();
is.close();
} catch (IOException ex) {
// Exception handling
}

但是,它停止于:

runtimeError: message=[No node attached to this object] sourceName=[http://pagead2.googlesyndication.com/pagead/osd.js] line=[7] lineSource=[null] lineOffset=[0]

创建的文件大小为 0。一定有办法获取附加的真实文件吗?!

提前谢谢

最佳答案

以防万一其他人想知道:您需要使用 AttachmentHandler。

            ScriptResult result = page2.executeJavaScript(buttonJavaScript);
webClient.waitForBackgroundJavaScript(1000);

if( attachments.size() > 0 )
{
Attachment attachment = attachments.get(0);

Page attachedPage = attachment.getPage();
WebResponse attachmentResponse = attachedPage.getWebResponse();

String content = attachmentResponse.getContentAsString();

... write(content);
}

关于java - 使用 htmlunit 下载 javascript 按钮后面的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25094637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com