获取更新的URL

时间:2017-10-21 09:09:33

标签: java

我正在尝试从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();
    }
}

我的想法:我打电话给我想要的城市一边,几秒钟后,我得到包含经度和纬度的新网址。 当我手动尝试时,我执行以下步骤:

  1. 插入具有指定城市的网址
  2. 等待几秒钟,URL更改
  3. 使用新网址使用
  4. 我的问题是,我不知道如何获取更新的网址。

0 个答案:

没有答案