Home / CSE MCQs / Apache POI :: Discussion

Discussion :: Apache POI

  1. What are the steps to create a cell in a spreadsheet in Apache POI?
  2. A.
    //create new workbook
    B.
    XSSFWorkbook workbook = new XSSFWorkbook();
    C.
    //create spread sheet with a name
    D.
    XSSFSheet spreadsheet = workbook.createSheet("new sheet");
    E.
    All the above

    View Answer

    Workspace

    Answer : Option E

    Explanation :



Be The First To Comment