如何将 HtmlUnit cookies 保存到文件中?
我想将 HtmlUnit cookies 保存到一个文件中,并在下次运行时从该文件加载它们。我怎样才能做到这一点?谢谢。
I'd like to save HtmlUnit cookies to a file and on next run load them from that one. How can I do that? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面的代码仅适用于 HtmlUnit(我不是在批评什么)
即仅以 HtmlUnit 可以读取的格式导出。
这是一个更通用的:(这适用于curl)
现在,从for循环中的那些println中生成字符串。将它们写入文本文件。
与curl一起使用:
-b也可以用-c更改..检查curl文档...
The above code works only with HtmlUnit (Im not criticizing or anything)
i.e. exports only in a format that can be read by HtmlUnit agin.
Here is a more generic one: (This works with curl)
Now, Make String out of those println(s) in the for loop. write them to a text file.
works with curl :
-b can be changed with -c too.. check curl docs...