在Java中,你可以使用HttpURLConnection类来设置请求头并实现重定向。
下面是一个示例代码,演示了如何设置重定向的请求头:
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
public class RedirectExample {
public static void main(String[] args) throws IOException {
String url = "http://example.com";
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setInstanceFollowRedirects(false); // 禁止自动重定向
connection.setRequestProperty("User-Agent", "Mozilla/5.0"); // 设置请求头
int responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_MOVED_PERM || responseCode == HttpURLConnection.HTTP_MOVED_TEMP) {
String redirectUrl = connection.getHeaderField("Location"); // 获取重定向的URL
System.out.println("重定向到:" + redirectUrl);
// 手动发送新的请求
connection = (HttpURLConnection) new URL(redirectUrl).openConnection();
connection.setRequestProperty("User-Agent", "Mozilla/5.0"); // 设置请求头
responseCode = connection.getResponseCode();
System.out.println("响应代码:" + responseCode);
} else {
System.out.println("响应代码:" + responseCode);
}
connection.disconnect();
}
}
在上面的示例代码中,我们首先创建了一个HttpURLConnection对象,并使用setInstanceFollowRedirects(false)
方法禁止自动重定向。然后,我们使用setRequestProperty()
方法来设置"User-Agent"请求头,模拟浏览器访问。接下来,我们发送请求并获取响应代码。如果响应代码为HTTP_MOVED_PERM(301)或HTTP_MOVED_TEMP(302),则表示发生了重定向。我们使用getHeaderField("Location")
方法获取重定向的URL,并手动发送新的请求。最后,我们再次获取响应代码进行验证。
请注意,上述代码只是一个示例,具体的实现可能会因为不同的需求而有所不同。