gpt4 book ai didi

java - 设置使用 HttpURLConnection 时遵循的最大服务器重定向数

转载 作者:可可西里 更新时间:2023-11-01 16:10:37 33 4
gpt4 key购买 nike

有没有办法强制使用 HttpURLConnection 时遵循的最大重定向次数?

        HttpURLConnection conn = (HttpURLConnection) uri.getURI().toURL();
conn.connect();

我只能看到启用/禁用重定向的选项

conn.setFollowRedirects(true)

我想将最大跟随设置为 3(默认似乎是 20),以防止出现这样的异常:

java.net.ProtocolException: Server redirected too many  times (20)

这是由某些服务器上的循环重定向引起的。

最佳答案

你可以试试 http.maxRedirects属性:

System.setProperty("http.maxRedirects", "3");

关于java - 设置使用 HttpURLConnection 时遵循的最大服务器重定向数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4775277/

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