Skip to content

Instantly share code, notes, and snippets.

View BrayanMC's full-sized avatar
🏠
Working from home

BrayanMC BrayanMC

🏠
Working from home
View GitHub Profile
@mwshubham
mwshubham / Android2Excel
Last active February 3, 2020 17:46
Android Kotlin generate excel sheet file example sample
private fun generateExcel() {
try {
val workbook = HSSFWorkbook()
val spreadSheet = workbook.createSheet("Sell Report")
/*Header "Sampe..."*/
val rowA = spreadSheet.createRow(0)
val cellAA = rowA.createCell(0)
cellAA.setCellValue(HSSFRichTextString("Sampe"))
cellAA.setCellStyle(