KotlinPOI program implements an application that simply reads and writes Microsoft Office files (docx, xlsx, and pptx) using Apache POI library and written in Kotlin.
Function call example that writes docx, xlsx, and pptx files in Windows Operating System
createDocx("C:/Users/Public/Documents/document.docx", "Hello, world!")
createXlsx("C:/Users/Public/Documents/workbook.xlsx", "Hello, world!")
createPptx("C:/Users/Public/Documents/presentation.pptx", "Hello, world!")
Function call example that reads docx, xlsx, and pptx files in Windows Operating System
readDocx("C:/Users/Public/Documents/document.docx")
readXlsx("C:/Users/Public/Documents/workbook.xlsx")
readPptx("C:/Users/Public/Documents/presentation.pptx")