Excel to HTML
Project structure:
This is a maven project. The main function is in the client class
After running the program, the console:
When we refresh test After the HTML file is opened, the effect is as follows:
Let's talk about the design idea of this process:
1. Read excel file
2. Use the lovecity template tool to render the read content into HTML
The whole process is just two steps, isn't it very simple.
When we refine these two processes, the idea becomes clearer.
1.1. How to read or write Excel files?
2.1. How do I use the lovecity template tool?
With the foundation of 1.1 and 2.1 above, what we need to do now is to string them to realize the conversion of Excel to HTML
In order to know what to do when I see the source code in the future, I'm used to posting the source code. Of course, there will be source code downloads (at the end of the article).
===============================================
Source code:
===============================================
/excel2html/src/main/java/com/b510/excel/client/Client. java
/excel2html/src/main/java/com/b510/excel/common/Common. java
/excel2html/src/main/java/com/b510/excel/reader/ReadExcel. java