Tag: tutorial

  • Parse Excel with Kotlin

    I want to share how to parse excel files using kotlin and apache poi java lib. repository can be found here. This example will parse a sheet with several cell type (number, string, date). The basic ideas are:1. get the Workbook instance by instantiating XSSFWorkbook(file: File)2. get the Sheet instance by call workbook.getSheetAt(idx: Int) or…