0

我正在尝试从我的机​​构代理后面使用 Resty。我想出了这个例外

Exception in thread "main" java.net.ConnectException: Connection refused: connect

有人可以帮我告诉我为什么会得到这个例外吗?

这是完整的代码:

package models;
import static us.monoid.web.Resty.*;
import us.monoid.web.Resty;
import us.monoid.web.Resty.*;

public class Tracks {
public static void main(String args[])throws Exception{
    Resty r= new Resty();
    String s = r.json("http://ws.geonames.org/postalCodeLookupJSON?"+
    "postalcode=66780&country=DE").get("postalcodes[0].placeName").toString();
    //String s=r.json("http://ws.audioscrobbler.com/2.0/?method=geo.gettopartists&country=spain&api_key=4174709b0d420c7080c7ac75e6944f1c&format=json").get("topartists[0].artist[0].name").toString();
    System.out.println(s);
}
}
4

1 回答 1

0

看起来您的访问被阻止了。您连接到错误的目标或它根本没有运行。

验证您的网络连接是否正常。通常在代理存在的地方直接访问被阻止。根据您的操作,您可以使用该代理或为您请求防火墙规则。

于 2012-10-27T17:46:49.720 回答