加一个代理:

    public static void MyProxy() {
        System.setProperty("http.maxRedirects", "50");
        System.getProperties().setProperty("proxySet", "true");
        System.getProperties().put("https.proxyHost", "proxy.lfk.360es.cn");  
        System.getProperties().put("https.proxyPort", "3128");//注意端口为String类型。
    }

【Exception】爬虫代理报错java.net.UnknownHostException_java学习