Skip to content

📓 This is the library for convert excel XLS and XLSX files to HTML or PDF formats

Notifications You must be signed in to change notification settings

malltshik/xls2pdf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XLS2PDF

This is the library for convert excel XLS and XLSX files to HTML or PDF formats

Based on:

  • jxls - for convert XLS,XLSX to HTML
  • itext - for convert HTML to PDF

Usage:

for HTML (Xls2HtmlConverter)

new Xls2HtmlConverter(
        new FileInputStream("source.xlsx"), // source excel file
        new FileOutputStream("target.html") // result HTML file
).convert();

for PDF (Xls2PdfConverter)

new Xls2PdfConverter(
        new FileInputStream("source.xlsx"), // source excel file
        new FileOutputStream("target.pdf") // result PDF file
).convert();

Attention!

This is beta. Do not use this on production!

About

📓 This is the library for convert excel XLS and XLSX files to HTML or PDF formats

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published