Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 914 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 914 Bytes

KotlinPOI

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.

Usage

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")

License

Apache License (Version 2.0)