我正在尝试在我的Excel中放置一个公式,这是一个Web服务公式,它将打印出地图的XML,然后我将使用filterout作为经度和纬度。该文件有1736条记录,因此有一种方法可以应用Web服务公式,它可以在公式中相应地更改单元格值。
公式
=WEBSERVICE("http://maps.googleapis.com/maps/api/geocode/xml?address=c3+,+&sensor=false")
我想改变" c3"到c4,c5 ....逐行自动递增值
答案 0 :(得分:1)
只需将网址包含在引号中,然后使用import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Main {
static String URL = "http://www.google.com";
static WebDriver driver;
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver", "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");
//Following code never executes
driver = new FirefoxDriver();
//I'm not sure if this is how I'm supposed to open URL, but I never had this code executed.
driver.get(URL);
driver.quit();
}
}
添加&
引用。
C3
然后向下拖动。