我正在尝试写出一些优秀的东西,我尝试了一些但不起作用。我不知道该怎么做。
XSSFWorkbook wb1 = new XSSFWorkbook();
Sheet shee = wb1.createSheet("Data");
FileOutputStream fileOut = new
FileOutputStream("C:\\Users\\User_2\\Desktop\\video.xlsx");
wb1.write(fileOut);
d.get("http://freevideolectures.com/Course/3680/Pentaho-BI");
java.util.List<WebElement> cl =
d.findElements(By.xpath("//ul[@class='lecture_menu']/li/a"));
for (WebElement wel : cl) {
String href = wel.getAttribute("href");
System.out.println(href);
我想要在excel中打印输出,需要帮助!