gpt4 book ai didi

java - 如果不返回任何空值,如何编写向 Excel 工作表中的单元格传递值的条件?

转载 作者:行者123 更新时间:2023-11-30 08:00:13 24 4
gpt4 key购买 nike

我需要将一个变量传递给Excel工作表单元格。那么如何检查它是否返回空值。如果它具有空值,我需要在单元格而不是实际单元格中给出警报消息值。

            // Element fetching 

Element= driver.findElement(By.xpath(".//*[@id='Form1']/table[3]/tbody/tr[5]/td[3]/a")) ;
Email_ID = Element.getText();

FileInputStream fis = new FileInputStream("E:\\ExcelRead.xls");
Workbook wb = WorkbookFactory.create(fis);
Sheet sh = wb.getSheet("Input");

// File Handling
Row row = sh.createRow(ExcelRow);
Cell cell_3 = row.createCell(2);
cell_3.setCellValue(Email_ID);

//文件处理

      FileOutputStream fos = new FileOutputStream("E:\\ExcelRead.xls");

wb.write(fos);

fos.close();

System.out.println("Excel File Written.");

最佳答案

检查它是否为null。这可以应用于任何对象。

String value = null;

if(value != null)
{
//do your logic
}
else
{
System.out.println("Null Value");
}

关于java - 如果不返回任何空值,如何编写向 Excel 工作表中的单元格传递值的条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32073504/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com