欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java根据百度url获取真正的网页地址

程序员文章站 2022-03-16 20:18:53
...
/**
* 根据百度url,获取原本url
* @throws IOException
* @throws HttpException
* */
public static  String getRealUrlFromBaiduUrl(String url) {
        Connection.Response res = null;
        int itimeout = 60000;
        try {
            res = Jsoup.connect(url).timeout(itimeout).method(Connection.Method.GET).followRedirects(false).execute();
            return res.header("Location");
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "";
}
相关标签: java bdurl 百度