使用代理服务器调用百度地图API

private static String ak = "5ef2641d89438a6e708db122820cf1d2"; public static Map testPost(String x, String y) throws IOException { URL url = new URL("http://api.map.baidu.com/geocoder?" + ak + "=您的密钥" + "&callback=renderReverse&location=" + x + "," + y + "&output=json"); URLConnection connection = url.openConnection(); connection.setDoOutput(true); OutputStreamWriter out = new OutputStreamWriter(connection.getOutputStream(), "utf-8");使用java调用百度地图API,公司使用的是代理服务器,使用以上的方法调用连接不了,想请教使用什么方法可以使用代理服务器调用百度地图API。