我正在尝试从URL获取latidute和经度。 我目前的代码:
public void getCoordinate(String city) {
try {
URL current = new URL("https://google.de/maps/place/" + city);
URLConnection currentConnection = current.openConnection();
System.out.println("Current: " + current.toString());
Thread.sleep(180 * 40L);
URL updated = currentConnection.getURL();
System.out.println("Now: " + updated.toString());
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
我的想法:我打电话给我想要的城市一边,几秒钟后,我得到包含经度和纬度的新网址。 当我手动尝试时,我执行以下步骤:
我的问题是,我不知道如何获取更新的网址。