获取“ java.net.ProtocolException:服务器重定向太多次”错误

获取“ java.net.ProtocolException:服务器重定向太多次”错误,第1张

获取“ java.net.ProtocolException:服务器重定向太多次”错误

它显然是在无限循环中重定向,因为您无需维护用户会话。会话通常由cookie支持。您需要先创建一个,

cookieManager
然后才能使用
URLConnection

// First set the default cookie manager.cookieHandler.setDefault(new cookieManager(null, cookiePolicy.ACCEPT_ALL));// All the following subsequent URLConnections will use the same cookie manager.URLConnection connection = new URL(url).openConnection();// ...connection = new URL(url).openConnection();// ...connection = new URL(url).openConnection();// ...
也可以看看:
  • 使用java.net.URLConnection触发和处理HTTP请求


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5487041.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存