「 http://news.google.com/?ned=us&topic=t 」の「?ned=us&topic=t」の部分をコピーする方法を知りたいです。基本的には、URLのパス、または「.com」以降の部分をコピーしたい。どうすればいいですか?
public class Example {
public static String url = "http://news.google.com/?ned=us&topic=t";
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get(url);
WebElement reportCln=driver.findElement(By.id("id_submit_button"));
String path=driver.getCurrentUrl();
System.out.println(path);
}
}