機関のプロキシの背後から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);
}
}